-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove line breaks in test.yml
- Loading branch information
1 parent
04eac23
commit 0506bdb
Showing
1 changed file
with
4 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,25 +46,11 @@ jobs: | |
- name: Run tests | ||
run: | | ||
if [ "${{ matrix.dependency }}" == "z3-solver" ]; then | ||
pytest tests -vv --cov python_ta --cov-config=.coveragerc --cov-report lcov \ | ||
--ignore=tests/test_type_constraints --ignore=tests/test_type_inference \ | ||
--ignore=tests/test_debug/test_accumulation_table.py \ | ||
--ignore=tests/test_debug/test_recursion_table.py \ | ||
--ignore=tests/test_debug/test_snapshot_tracer.py | ||
pytest -vv \ | ||
tests/test_debug/test_accumulation_table.py \ | ||
tests/test_debug/test_recursion_table.py \ | ||
tests/test_debug/test_snapshot_tracer.py | ||
pytest tests -vv --cov python_ta --cov-config=.coveragerc --cov-report lcov --ignore=tests/test_type_constraints --ignore=tests/test_type_inference --ignore=tests/test_debug/test_accumulation_table.py --ignore=tests/test_debug/test_recursion_table.py --ignore=tests/test_debug/test_snapshot_tracer.py | ||
pytest -vv tests/test_debug/test_accumulation_table.py tests/test_debug/test_recursion_table.py tests/test_debug/test_snapshot_tracer.py | ||
else | ||
pytest tests -vv --cov python_ta --cov-config=.coveragerc --cov-report lcov --exclude-z3 \ | ||
--ignore=tests/test_type_constraints --ignore=tests/test_type_inference \ | ||
--ignore=tests/test_debug/test_accumulation_table.py \ | ||
--ignore=tests/test_debug/test_recursion_table.py \ | ||
--ignore=tests/test_debug/test_snapshot_tracer.py | ||
pytest -vv \ | ||
tests/test_debug/test_accumulation_table.py \ | ||
tests/test_debug/test_recursion_table.py \ | ||
tests/test_debug/test_snapshot_tracer.py | ||
pytest tests -vv --cov python_ta --cov-config=.coveragerc --cov-report lcov --exclude-z3 --ignore=tests/test_type_constraints --ignore=tests/test_type_inference --ignore=tests/test_debug/test_accumulation_table.py --ignore=tests/test_debug/test_recursion_table.py --ignore=tests/test_debug/test_snapshot_tracer.py | ||
pytest -vv tests/test_debug/test_accumulation_table.py tests/test_debug/test_recursion_table.py tests/test_debug/test_snapshot_tracer.py | ||
fi | ||
- name: Upload test coverage to coveralls.io | ||
uses: coverallsapp/[email protected] | ||
|