https://github.com/raphaelvallat/yasa
Raw File
Tip revision: ac57657b976e3f544ddaccc43e56f38164bb3e09 authored by Raphael Vallat on 30 August 2019, 19:02:49 UTC
Switch to 0.1.7
Tip revision: ac57657
appveyor.yml
build: false

environment:
  matrix:
    - PYTHON_VERSION: 3.5
      MINICONDA: C:\Miniconda3
    - PYTHON_VERSION: 3.6
      MINICONDA: C:\Miniconda3
    - PYTHON_VERSION: 3.7
      MINICONDA: C:\Miniconda3

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

install:
  - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  - conda info -a
  - "conda create -q -n test_env python=%PYTHON_VERSION% numpy scipy"
  - activate test_env
  - pip install -r requirements.txt
  - pip install -r requirements-test.txt
  - pip install .

test_script:
  - "pytest"
back to top