https://github.com/tskit-dev/msprime
Raw File
Tip revision: e4396a75fc6b4b359728fd26709af373893ddd11 authored by Jerome Kelleher on 26 February 2018, 12:01:03 UTC
Merge pull request #414 from jeromekelleher/release-date
Tip revision: e4396a7
appveyor.yml
environment:
  matrix:
    - PYTHON: "C:\\Miniconda35-x64"

    - PYTHON: "C:\\Miniconda35"

    - PYTHON: "C:\\Miniconda36-x64"

    - PYTHON: "C:\\Miniconda36"

install:
  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

build: false

test_script:
  - "conda config --add channels conda-forge"
  - "conda install --yes --file=requirements/conda-minimal.txt"
  - "pip install svgwrite"  # svgwrite isn't available in conda
  - "pip install PyVCF"  
  - "pip install newick"  
  - "pip install python_jsonschema_objects"

  # There seems to be an issue here, where we're not using the correct 
  # version of Python.
  - "SET MSP_CONDA_PREFIX=%PYTHON%"
  - "python setup.py build_ext --inplace"
  - "nosetests -vs"

after_test:
  - "python setup.py bdist_wheel"
back to top