Skip to content

Commit

Permalink
Upload processing container data
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorjerse authored and jkokosar committed Dec 19, 2024
1 parent 853490a commit 5cea1ca
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -109,6 +109,20 @@ jobs:
run: |
tox -e ${{ matrix.toxenv }}-partial
- name: List files in test data directory
if: always()
run: |
ls -a -R ${{ 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
Expand Down
1 change: 1 addition & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Unreleased

Added
-----
- Save test folder data using actions/upload-artifact

Changed
-------
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 5cea1ca

Please sign in to comment.