diff --git a/.github/workflows/build_lint.yml b/.github/workflows/build_lint.yml index 112de27e..0da5147b 100644 --- a/.github/workflows/build_lint.yml +++ b/.github/workflows/build_lint.yml @@ -35,7 +35,7 @@ jobs: # - name: Install dependencies # run: pip install mesa pytest # - name: Test with pytest - # run: pytest test_examples.py + # run: pytest -rA -Werror test_examples.py build-pre: runs-on: ubuntu-latest @@ -50,7 +50,7 @@ jobs: pip install mesa --pre pip install pytest - name: Test with pytest - run: pytest -rA test_examples.py + run: pytest -rA -Werror test_examples.py build-main: runs-on: ubuntu-latest @@ -65,4 +65,4 @@ jobs: pip install pytest pip install -U git+https://github.com/projectmesa/mesa@main#egg=mesa - name: Test with pytest - run: pytest -rA test_examples.py + run: pytest -rA -Werror test_examples.py