Skip to content

Commit

Permalink
Travis experimentation 7
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyod committed Aug 31, 2018
1 parent 06eb776 commit d3dcd40
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ build_script:
- python setup.py develop
- pip install wheel
- pip install --upgrade cibuildwheel
- python -m cibuildwheel --output-dir wheelhouse

test_script:
- pytest KDEpy --doctest-modules --doctest-glob="*.rst" --capture=sys
Expand All @@ -45,5 +44,9 @@ after_test:


on_success:
- pip install twine
- "twine upload wheelhouse\\*.whl --skip-existing"
- ps: |
if ($env:APPVEYOR_REPO_TAG -eq 'false' -or $env:APPVEYOR_REPO_TAG -eq 'False') {
pip install twine
python -m cibuildwheel --output-dir wheelhouse
"twine upload wheelhouse\\*.whl --skip-existing"
}

0 comments on commit d3dcd40

Please sign in to comment.