diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 82c75a4a6..42d15a17e 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -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 diff --git a/pytest.ini b/pytest.ini index e8d0284e0..de6cbe25b 100644 --- a/pytest.ini +++ b/pytest.ini @@ -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