File tree Expand file tree Collapse file tree 1 file changed +10
-12
lines changed
Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -121,18 +121,16 @@ jobs:
121121 uses : actions/setup-python@v5
122122 with :
123123 python-version : ${{ matrix.python-version }}
124- - name : Update build tools
125- run : python -m pip install --upgrade pip
126- - name : Checkout Pydra repo
127- uses : actions/checkout@v4
128- with :
129- repository : ${{ github.repository }}
130- - name : Fetch tags
131- run : git fetch --prune --unshallow
132- - name : Install pydra (test)
133- run : pip install -e ".[test]"
134- - name : Pytest
135- run : pytest pydra/environments/tests/test_singularity.py pydra/environments/tests/test_environments.py
124+ - name : Install tox
125+ run : |
126+ uv tool install tox --with=tox-uv --with=tox-gh-actions
127+ - name : Show tox config
128+ run : tox c
129+ - name : Run tox
130+ # Run test files with singularity tests; re-add the overridable "-n auto"
131+ run : |
132+ tox -v --exit-and-dump-after 1200 -- -n auto \
133+ pydra/environments/tests/test_singularity.py pydra/environments/tests/test_environments.py
136134 - name : Upload coverage to Codecov
137135 uses : codecov/codecov-action@v5
138136 with :
You can’t perform that action at this time.
0 commit comments