Skip to content

Commit

Permalink
Changing name to mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
tdegeus committed Feb 24, 2021
1 parent 79720b3 commit b64612e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
- name: test environment name in powershell
shell: powershell
run: |
python -c "import subprocess; ret = subprocess.check_output(['conda', 'info']).decode('utf-8'); assert ret.split('active environment : ')[1].split('/')[-1].split('\n')[0] == 'myenv'"
python -c "import subprocess; ret = subprocess.check_output(['mamba', 'info']).decode('utf-8'); assert ret.split('active environment : ')[1].split('/')[-1].split('\n')[0] == 'myenv'"
if: runner.os == 'Windows'

- name: test environment name in bash
shell: bash -l {0}
run: |
python -c "import subprocess; ret = subprocess.check_output(['conda', 'info']).decode('utf-8'); assert ret.split('active environment : ')[1].split('/')[-1].split('\n')[0] == 'myenv'"
python -c "import subprocess; ret = subprocess.check_output(['mamba', 'info']).decode('utf-8'); assert ret.split('active environment : ')[1].split('/')[-1].split('\n')[0] == 'myenv'"
if: runner.os != 'Windows'

0 comments on commit b64612e

Please sign in to comment.