Skip to content

Commit

Permalink
Pull bleeding edge virtualenv tests again (#8262)
Browse files Browse the repository at this point in the history
We previously pulled just the latest tags to be not dependent on
potentially breaking tests from virtualenvs development.

Effectively reverts #7638
  • Loading branch information
sholderbach committed Feb 28, 2023
1 parent 50f1e33 commit 27d7982
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -115,12 +115,14 @@ jobs:

# Get only the latest tagged version for stability reasons
- name: Install virtualenv
run: git clone https://github.com/pypa/virtualenv.git && cd virtualenv && git checkout $(git describe --tags | cut -d - -f 1)
run: git clone https://github.com/pypa/virtualenv.git
shell: bash

- name: Test Nushell in virtualenv
run: |
cd virtualenv
# if we encounter problems with bleeding edge tests pin to the latest tag
# git checkout $(git describe --tags | cut -d - -f 1)
# We need to disable failing on coverage levels.
nu -c "open pyproject.toml | upsert tool.coverage.report.fail_under 1 | save patchproject.toml"
mv patchproject.toml pyproject.toml
Expand Down

0 comments on commit 27d7982

Please sign in to comment.