From 3af58d129db14e86e91d6a38cd1d5eb5361b7217 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 30 Mar 2019 20:41:09 -0400 Subject: [PATCH] Add windows CI using choco Resolves #62 --- .travis.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6df2b7f..d170042 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,14 @@ language: python matrix: include: - # - python: 3.6 + - os: windows + language: sh + python: 3.7 + before_install: + - choco install python3 + - export PATH="/c/Python37:/c/Python37/Scripts:$PATH" + - python -m pip install --upgrade pip wheel + - python: 3.7 dist: xenial sudo: required