MilesCranmer commited on
Commit
04c09f5
1 Parent(s): 3c54f40

Try creating env from scratch

Browse files
.github/workflows/CI_conda_forge.yml CHANGED
@@ -27,11 +27,10 @@ jobs:
27
  - name: "Set up conda"
28
  uses: conda-incubator/setup-miniconda@v2
29
  with:
30
- miniconda-version: latest
31
- auto-activate-base: true
32
  python-version: ${{ matrix.python-version }}
33
- activate-environment: test
 
34
  - name: "Install pysr with conda"
35
- run: conda activate test && conda install -c conda-forge pysr
36
  - name: "Run tests"
37
  run: conda activate test && python3 -m unittest test.test && python3 -m unittest test.test_env
 
27
  - name: "Set up conda"
28
  uses: conda-incubator/setup-miniconda@v2
29
  with:
 
 
30
  python-version: ${{ matrix.python-version }}
31
+ auto-activate-base: true
32
+ activate-environment: ""
33
  - name: "Install pysr with conda"
34
+ run: conda create -n test -c conda-forge pysr
35
  - name: "Run tests"
36
  run: conda activate test && python3 -m unittest test.test && python3 -m unittest test.test_env