Skip to content

Commit

Permalink
actions: run integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders committed Jun 12, 2020
1 parent f56cf74 commit 6a0be64
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [pull_request]


jobs:
unit-test:
fast-tests:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -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:
Expand Down
1 change: 0 additions & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit 6a0be64

Please sign in to comment.