Skip to content

Commit

Permalink
clean, update and add micromamba to PATH (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Oct 22, 2021
1 parent 0868e71 commit 2b375ce
Show file tree
Hide file tree
Showing 7 changed files with 1,776 additions and 318 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
python -VV
python -c "import numpy"
echo "MAMBA_EXE=$Env:MAMBA_EXE"
which micromamba
python test/test_path.py
if: runner.os == 'Windows'

- name: run python in cmd.exe
Expand All @@ -34,6 +36,8 @@ jobs:
python -c "import numpy"
micromamba --help
echo "MAMBA_EXE=%MAMBA_EXE%"
where micromamba
python test/test_path.py
if: runner.os == 'Windows'

- name: run python in bash
Expand All @@ -43,12 +47,17 @@ jobs:
python -c "import numpy"
micromamba --help
echo "MAMBA_EXE=$MAMBA_EXE"
which micromamba
python test/test_path.py
- name: run python in zsh
shell: zsh -l {0}
run: |
python -VV
python -c "import numpy"
micromamba --help
echo "MAMBA_EXE=$MAMBA_EXE"
if: runner.os == 'macOS'
# - name: run python in zsh
# shell: zsh -l {0}
# run: |
# python -VV
# python -c "import numpy"
# micromamba --help
# micromamba activate test
# echo "MAMBA_EXE=$MAMBA_EXE"
# which micromamba
# python test/test_path.py
# if: runner.os == 'macOS'
Loading

0 comments on commit 2b375ce

Please sign in to comment.