Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: fix the tests on Windows #591

Merged
merged 2 commits into from
Oct 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,13 @@ jobs:
run: git fetch --prune --tags --unshallow
- name: conda setup
run: |
conda install -n base -c defaults "conda>=4.12"
conda install -n base -c conda-forge mamba --no-update-deps
conda install -c conda-forge "nodejs=15.3.0" --no-update-deps
conda config --prepend channels nodefaults
conda config --prepend channels conda-forge
conda config --prepend channels pyviz/label/dev
conda config --remove channels defaults
conda create -n test-environment python=${{ matrix.python-version }} pyctdev
conda create -n test-environment
conda activate test-environment
conda config --env --append channels pyviz/label/dev --append channels conda-forge
conda config --env --remove channels defaults
conda install python=${{ matrix.python-version }} pyctdev
- name: doit develop_install
run: |
eval "$(conda shell.bash hook)"
Expand Down