Skip to content

Commit

Permalink
Enable travis on Windows (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Tung authored Aug 30, 2019
1 parent a0e207d commit 5d98b5b
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,21 @@ python:
- 3.5
- 3.6
dist: trusty
matrix:
include:
- os: windows
language: sh
python: "3.7"
before_install:
- choco install python3 make
- export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
- python -m pip install --upgrade pip wheel
install:
- pip install -r requirements-dev.txt
- pip install -e .
- pip freeze
- pip install -r requirements-dev.txt
- pip install -e .
- pip freeze
script:
- set -eo pipefail
- make test
- set -eo pipefail
- make test
after_success:
- bash <(curl -s https://codecov.io/bash)
- bash <(curl -s https://codecov.io/bash)

0 comments on commit 5d98b5b

Please sign in to comment.