Skip to content

Commit

Permalink
added appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
koaning committed Mar 1, 2019
1 parent 01afe10 commit 02f2499
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .appveyor.yml
@@ -0,0 +1,24 @@
build: false

environment:
global:
REQUIREMENTS: "numpy scipy scikit-learn pytest flake8"

matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda3-x64


init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"

install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda create -n sklego-env -c pytorch %REQUIREMENTS% python=%PYTHON_VERSION%
- activate sklego-env
- pip install -e .

test_script:
- activate sklego-env
- pytest tests/

0 comments on commit 02f2499

Please sign in to comment.