From ebb7976eceab9a7a39ce262effa95160c65c231b Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Sat, 10 Aug 2024 19:03:30 +0200 Subject: [PATCH] CI: Let pytest generate summary report See https://docs.pytest.org/en/7.1.x/how-to/output.html#producing-a-detailed-summary-report --- .github/workflows/build_lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_lint.yml b/.github/workflows/build_lint.yml index 527ce52e..112de27e 100644 --- a/.github/workflows/build_lint.yml +++ b/.github/workflows/build_lint.yml @@ -50,7 +50,7 @@ jobs: pip install mesa --pre pip install pytest - name: Test with pytest - run: pytest test_examples.py + run: pytest -rA 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 -v test_examples.py + run: pytest -rA test_examples.py