From 6a0be645211788a32a118dd83517903b640ca101 Mon Sep 17 00:00:00 2001 From: Oliver Sanders Date: Fri, 12 Jun 2020 14:45:25 +0100 Subject: [PATCH] actions: run integration tests --- .github/workflows/test.yml | 14 +++++++++----- tests/integration/conftest.py | 1 - 2 files changed, 9 insertions(+), 6 deletions(-) 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."""