Skip to content

Commit

Permalink
use CONDA everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
jchopard committed Mar 14, 2019
1 parent f5a8b05 commit 581676a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
CMD_IN_ENV: "cmd /E:ON /V:ON /C"

matrix:
- CONDA: "C:\\Miniconda3-x64\\Scripts"
- CONDA: "C:\\Miniconda3-x64\\Scripts\\conda"

install:
- dir C:\Miniconda3-x64
Expand All @@ -20,19 +20,19 @@ install:
# - miniconda.exe /AddToPath=1 /InstallationType=JustMe /RegisterPython=0 /S /D=%HOMEDRIVE%\Miniconda
# - del miniconda.exe
# - "set PATH=%HOMEDRIVE%\\Miniconda;%HOMEDRIVE%\\Miniconda\\Scripts;%PATH%"
- "%CONDA%\\conda config --set always_yes yes --set changeps1 no"
- conda update -q conda
- "%CONDA% config --set always_yes yes --set changeps1 no"
# - conda update -q conda
# useful for debugging any issues with conda
- conda info -a
- "%CONDA% info -a"
# create environment
- conda create -n ci python
- activate ci
- "%CONDA% create -n ci python"
- "%CONDA% activate ci"

build: false

build_script:
# install dependencies
- conda install -c conda-forge coverage coveralls flake8 jinja2 pytest pytest-cov pytest-mock requests semver sphinx sphinx_rtd_theme tox twine unidecode
- "%CONDA% install -c conda-forge coverage coveralls flake8 jinja2 pytest pytest-cov pytest-mock requests semver sphinx sphinx_rtd_theme tox twine unidecode"


# install package
Expand Down

0 comments on commit 581676a

Please sign in to comment.