From 3db608eb5cc47c276ce48427cf60d30445e89006 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C5=BD=C3=A1dn=C3=ADk?= Date: Sat, 19 Mar 2022 00:36:38 +0200 Subject: [PATCH] Re-enable virtualenv tests (#4755) --- .github/workflows/ci.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2e7e068ba..9c33a4d901 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,8 +73,8 @@ jobs: platform: [ubuntu-latest, macos-latest, windows-latest] rust: - stable - # py: - # - py + py: + - py runs-on: ${{ matrix.platform }} @@ -95,20 +95,20 @@ jobs: command: install args: --path=. --no-default-features - # - name: Setup Python - # uses: actions/setup-python@v2 - # with: - # python-version: "3.10" + - name: Setup Python + uses: actions/setup-python@v2 + with: + python-version: "3.10" - # - run: python -m pip install tox + - run: python -m pip install tox - # - name: Install virtualenv - # run: | - # git clone https://github.com/kubouch/virtualenv.git && \ - # cd virtualenv && \ - # git checkout engine-q-update - # shell: bash + - name: Install virtualenv + run: | + git clone https://github.com/kubouch/virtualenv.git && \ + cd virtualenv && \ + git checkout engine-q-update + shell: bash - # - name: Test Nushell in virtualenv - # run: cd virtualenv && tox -e ${{ matrix.py }} -- -k nushell - # shell: bash + - name: Test Nushell in virtualenv + run: cd virtualenv && tox -e ${{ matrix.py }} -- -k nushell + shell: bash