From 5a533d6c00a425addcc42ef6910c453b1b9808df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20Jer=C5=A1e?= Date: Tue, 17 Dec 2024 17:54:46 +0100 Subject: [PATCH] Upload processing container data --- .github/workflows/ci.yml | 18 +++++++++++++++++- tox.ini | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5857cd0a..6dd7dccda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: - name: Migrations run: | tox -e migrations - + - name: Run entire test suite if: github.event_name != 'pull_request' timeout-minutes: 120 @@ -109,6 +109,22 @@ jobs: run: | tox -e ${{ matrix.toxenv }}-partial + - name: List files in the checkout directory + if: always() + run: | + ls -a ${{ github.workspace }}/tests/ + ls -a ${{ github.workspace }}/tests/test_data + ls -a ${{ github.workspace }}/tests/.test_data + + - name: Upload artifacts + if: always() + uses: actions/upload-artifact@v4 + with: + path: ${{ github.workspace }}/tests/test_data + retention-days: 1 + name: test_files + include-hidden-files: true + build: runs-on: arc-runner needs: test diff --git a/tox.ini b/tox.ini index 4a263a08a..89cb5cb7c 100644 --- a/tox.ini +++ b/tox.ini @@ -35,7 +35,7 @@ commands = partial: --only-changes-to \ partial: {env:RESOLWE_TEST_ONLY_CHANGES_TO:master} \ partial: --changes-file-types .resolwebio-filetypes.yml \ - --verbosity 2 --parallel + --verbosity 2 --parallel --keep-data # Check types. [testenv:mypy]