Skip to content

Commit

Permalink
Only run specified test
Browse files Browse the repository at this point in the history
  • Loading branch information
vmilosevic committed Aug 14, 2024
1 parent 5388672 commit 37139c5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ jobs:
shell: bash
run: |
source env/activate
pytest -svv pybuda/test/mlir/mnist/test_inference.py
pytest -svv pybuda/test/mlir/test_ops.py
pytest
continue-on-error: true

- name: Upload Test Report
Expand Down
10 changes: 10 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# TF & some other libraries report a bunch of deprecation warnings
[pytest]

# Ignore specific tests
addopts = -svv --junit-xml=reports/report.xml

# Where pytest should look for tests
testpaths =
pybuda/test/mlir/test_ops.py
pybuda/test/test_api.py
pybuda/test/test_inference.py

filterwarnings =
ignore::DeprecationWarning

0 comments on commit 37139c5

Please sign in to comment.