mirror of
https://github.com/nushell/nushell
synced 2024-12-27 21:43:09 +00:00
Re-enable virtualenv tests (#4755)
This commit is contained in:
parent
b293282e9b
commit
3db608eb5c
1 changed files with 16 additions and 16 deletions
32
.github/workflows/ci.yml
vendored
32
.github/workflows/ci.yml
vendored
|
@ -73,8 +73,8 @@ jobs:
|
||||||
platform: [ubuntu-latest, macos-latest, windows-latest]
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
rust:
|
rust:
|
||||||
- stable
|
- stable
|
||||||
# py:
|
py:
|
||||||
# - py
|
- py
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
|
||||||
|
@ -95,20 +95,20 @@ jobs:
|
||||||
command: install
|
command: install
|
||||||
args: --path=. --no-default-features
|
args: --path=. --no-default-features
|
||||||
|
|
||||||
# - name: Setup Python
|
- name: Setup Python
|
||||||
# uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
# with:
|
with:
|
||||||
# python-version: "3.10"
|
python-version: "3.10"
|
||||||
|
|
||||||
# - run: python -m pip install tox
|
- run: python -m pip install tox
|
||||||
|
|
||||||
# - name: Install virtualenv
|
- name: Install virtualenv
|
||||||
# run: |
|
run: |
|
||||||
# git clone https://github.com/kubouch/virtualenv.git && \
|
git clone https://github.com/kubouch/virtualenv.git && \
|
||||||
# cd virtualenv && \
|
cd virtualenv && \
|
||||||
# git checkout engine-q-update
|
git checkout engine-q-update
|
||||||
# shell: bash
|
shell: bash
|
||||||
|
|
||||||
# - name: Test Nushell in virtualenv
|
- name: Test Nushell in virtualenv
|
||||||
# run: cd virtualenv && tox -e ${{ matrix.py }} -- -k nushell
|
run: cd virtualenv && tox -e ${{ matrix.py }} -- -k nushell
|
||||||
# shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in a new issue