Skip to content

Commit

Permalink
Merge 4da1bae into 44ed11f
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Nov 19, 2018
2 parents 44ed11f + 4da1bae commit 4c61158
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ install:
# Create the test environment.
- cmd: conda create -y -n testenv python="%CONDA_PY%"
- cmd: conda env update -n testenv --file environment_ci.yml
- cmd: activate testenv
- cmd: conda activate testenv

# Skip .NET project specific build phase.
build: off
Expand Down
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,17 @@ install:
- openssl md5 miniconda.sh | grep e1045ee415162f944b6aebfe560b8fee
- bash miniconda.sh -b -p ~/miniconda
- rm miniconda.sh
- source ~/miniconda/bin/activate root
- source ~/miniconda/etc/profile.d/conda.sh
- conda activate
- conda config --set show_channel_urls true
- conda update -y -n root --all
- conda install -y -n root conda-build
- conda clean -tipsy

# Create the test environment.
- conda create -y -n testenv python="${PYVER}"
- conda remove -y --force -n testenv openssl
- conda env update -n testenv --file environment_ci.yml
- conda list --full-name -n testenv openssl || conda install -y -n testenv openssl
- source activate testenv
- conda activate testenv

# command to run tests, e.g. python setup.py test
script:
Expand All @@ -44,12 +43,12 @@ script:

# Report coverage
after_success:
- source activate root
- conda activate
- conda create -y -n dplenv python="3.5";
- conda remove -y --force -n dplenv openssl
- conda env update -n dplenv --file environment_dpl.yml
- conda list --full-name -n dplenv openssl || conda install -y -n dplenv openssl
- source activate dplenv
- conda activate dplenv
- coveralls

# Disable email notifications.
Expand Down

0 comments on commit 4c61158

Please sign in to comment.