Skip to content

Commit

Permalink
Enable travis on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Tung committed Aug 30, 2019
1 parent 04156c3 commit f320068
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 f320068

Please sign in to comment.