Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-arts committed Dec 18, 2024
1 parent 946ef3b commit 9657dd5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -378,14 +378,14 @@ jobs:
working-directory: ${{ env.PIXI_WORKSPACE }}
run: pixi install -v

- name: Run integration tests
working-directory: ${{ env.PIXI_WORKSPACE }}
run: pixi run --locked test-integration-ci

- name: Run long running integration tests
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'test:extra_slow') }}
run: pixi run --locked test-integration-ci -m "extra_slow"

- name: Run integration tests
working-directory: ${{ env.PIXI_WORKSPACE }}
run: pixi run --locked test-integration-ci

- name: Test examples
shell: bash
working-directory: ${{ env.PIXI_WORKSPACE }}
Expand Down Expand Up @@ -437,13 +437,13 @@ jobs:
- name: Install pixi
run: pixi install -v

- name: Run integration tests
run: pixi run --locked test-integration-ci

- name: Run long running integration tests
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'test:extra_slow') }}
run: pixi run --locked test-integration-ci -m "extra_slow"

- name: Run integration tests
run: pixi run --locked test-integration-ci

- name: Test examples
run: bash tests/scripts/test-examples.sh

Expand Down
4 changes: 3 additions & 1 deletion tests/integration_python/test_documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
],
)
def test_pytorch_documentation_examples(
pixi: Path, tmp_pixi_workspace: Path, manifest: Path
manifest: Path,
pixi: Path,
tmp_pixi_workspace: Path,
) -> None:
# Copy the manifest to the tmp workspace
toml = manifest.read_text()
Expand Down

0 comments on commit 9657dd5

Please sign in to comment.