From 903b191bf23728c6b47727102a81bba4ae776370 Mon Sep 17 00:00:00 2001 From: Patrick Li Date: Wed, 19 Jun 2024 14:03:58 -0400 Subject: [PATCH] test --- .github/workflows/continous-integration.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continous-integration.yml b/.github/workflows/continous-integration.yml index 7f8ee3c..95b0827 100644 --- a/.github/workflows/continous-integration.yml +++ b/.github/workflows/continous-integration.yml @@ -42,4 +42,12 @@ jobs: run: conda install --yes flake8 pytest - name: Test with pytest - run: conda run -n autosolvate pytest + run: + mkdir -p test-reports + conda run -n autosolvate pytest --junitxml=test-reports/results.xml + + - name: Upload Test Reports + uses: actions/upload-artifact@v3 + with: + name: test-reports + path: test-reports/results.xml