Skip to content

Commit

Permalink
scrutinizer config fix 6
Browse files Browse the repository at this point in the history
  • Loading branch information
KissPeter committed Jan 3, 2020
1 parent 76948e7 commit 0af3249
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,23 @@ build:
test-setup:
project_setup:
before:
- command: 'pip3 install -r test/requirements_for_test.txt && python3 test/test_application.py'
- command: pip3 install -r test/requirements_for_test.txt
on_node: 1
idle_timeout: 10
- command: python3 test/test_application.py
background: true
on_node: 1
idle_timeout: 10
test:
before:
- "cd test"
commands:
- command: 'pip3 install -r test/requirements_for_test.txt && cd test && pytest --durations=10 --show-capture=stdout -v -rP test.py'
- command: pip3 install -r requirements_for_test.txt
on_node: 1
idle_timeout: 10
- command: pytest --durations=10 --show-capture=stdout -v -rP test.py
on_node: 1
idle_timeout: 10
filter:
excluded_paths:
- "test/"

0 comments on commit 0af3249

Please sign in to comment.