Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Feb 25, 2024
1 parent 204b783 commit 284ab2f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/linux-pip-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@ jobs:
shell: bash -l {0}
run: |
pip install -e .[test]
# Zict 2.1.0 is not compatible with Python 3
pip install zict==2.0.0
# Zict >2.0.0 is not compatible with Python 3
if [ "$PYTHON_VERSION" = "2.7" ]; then
pip install zict==2.0.0
else
pip install --no-deps git+https://github.com/jdranczewski/ipykernel.git
fi
- name: Show environment information
shell: bash -l {0}
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/linux-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
- name: Install package dependencies
shell: bash -l {0}
run: |
if [ "$PYTHON_VERSION" != "2.7" ]; then mamba install --file requirements/posix.txt -y -q; else mamba install --file requirements/python-27.txt -y -q; fi
mamba install --file requirements/posix.txt -y -q
pip install --no-deps git+https://github.com/jdranczewski/ipykernel.git
- name: Install test dependencies
shell: bash -l {0}
run: mamba install --file requirements/tests.txt -y -q
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/macos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
- name: Install package dependencies
shell: bash -l {0}
run: |
if [ "$PYTHON_VERSION" != "2.7" ]; then mamba install --file requirements/posix.txt -y -q; else mamba install --file requirements/python-27.txt -y -q; fi
mamba install --file requirements/posix.txt -y -q
pip install --no-deps git+https://github.com/jdranczewski/ipykernel.git
- name: Install test dependencies
shell: bash -l {0}
run: mamba install --file requirements/tests.txt -y -q
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
shell: bash -l {0}
run: |
mamba install --file requirements/tests.txt -y -q
pip install --no-deps git+https://github.com/jdranczewski/ipykernel.git
- name: Install Package
shell: bash -l {0}
run: pip install -e .
Expand Down

0 comments on commit 284ab2f

Please sign in to comment.