diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 01c1a857f2b..0a2247ed92d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: - unit-test: + fast-tests: runs-on: ubuntu-latest strategy: matrix: @@ -29,15 +29,19 @@ jobs: - name: Style run: | - pycodestyle cylc/flow + pycodestyle etc/bin/shellchecker - - name: Unit Test + - name: Unit Tests run: | - pytest -n 5 + pytest -n 5 tests/unit + + - name: Integration Tests + run: | + pytest -n 5 tests/interation - functional_test: + functional-tests: runs-on: ubuntu-latest strategy: matrix: diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 381794d8089..f0d1e31fbf0 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -121,7 +121,6 @@ def test_dir(request, mod_test_dir): _rm_if_empty(path) - @pytest.fixture(scope='module') def mod_flow(run_dir, mod_test_dir): """A function for creating module-level flows."""