From 27d798270b2051e850f1b2ee3fa118d9992b8ea4 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Tue, 28 Feb 2023 22:43:37 +0100 Subject: [PATCH] Pull bleeding edge virtualenv tests again (#8262) We previously pulled just the latest tags to be not dependent on potentially breaking tests from virtualenvs development. Effectively reverts #7638 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c526e3ab48..e2fd514ca9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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