@@ -75,18 +75,17 @@ def docs_in_docker(session: Session) -> None:
7575
7676
7777@nox .session
78- def test (session : Session ) -> None :
78+ def test_python (session : Session ) -> None :
7979 """Run the complete test suite"""
8080 session .install ("--upgrade" , "pip" , "setuptools" , "wheel" )
81- test_python (session )
82- test_types (session )
83- test_style (session )
84- test_docs (session )
85- test_js (session )
81+ test_python_suite (session )
82+ test_python_types (session )
83+ test_python_style (session )
84+ test_python_docs (session )
8685
8786
8887@nox .session
89- def test_python (session : Session ) -> None :
88+ def test_python_suite (session : Session ) -> None :
9089 """Run the Python-based test suite"""
9190 session .env ["IDOM_DEBUG_MODE" ] = "1"
9291 install_requirements_file (session , "test-env" )
@@ -102,7 +101,7 @@ def test_python(session: Session) -> None:
102101
103102
104103@nox .session
105- def test_types (session : Session ) -> None :
104+ def test_python_types (session : Session ) -> None :
106105 """Perform a static type analysis of the codebase"""
107106 install_requirements_file (session , "check-types" )
108107 install_requirements_file (session , "pkg-deps" )
@@ -111,7 +110,7 @@ def test_types(session: Session) -> None:
111110
112111
113112@nox .session
114- def test_style (session : Session ) -> None :
113+ def test_python_style (session : Session ) -> None :
115114 """Check that style guidelines are being followed"""
116115 install_requirements_file (session , "check-style" )
117116 session .run ("flake8" , "src/idom" , "tests" , "docs" )
@@ -127,7 +126,7 @@ def test_style(session: Session) -> None:
127126
128127
129128@nox .session
130- def test_docs (session : Session ) -> None :
129+ def test_python_docs (session : Session ) -> None :
131130 """Verify that the docs build and that doctests pass"""
132131 install_requirements_file (session , "build-docs" )
133132 install_idom_dev (session , extras = "all" )
@@ -136,7 +135,7 @@ def test_docs(session: Session) -> None:
136135
137136
138137@nox .session
139- def test_js (session : Session ) -> None :
138+ def test_javascript (session : Session ) -> None :
140139 """Verify that the docs build and that doctests pass"""
141140 app_dir = HERE / "src" / "idom" / "client" / "app"
142141 session .chdir (str (app_dir ))
0 commit comments