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 18, 2024
1 parent 1c3121c commit 5a533d6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 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,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
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 5a533d6

Please sign in to comment.