https://github.com/tskit-dev/msprime
Raw File
Tip revision: 38d7e9b0527e0edc73009620dba68d4828309585 authored by Jerome Kelleher on 16 June 2018, 09:14:10 UTC
Merge pull request #533 from mcveanlab/docs-fix
Tip revision: 38d7e9b
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%"
  - "git submodule update --init --recursive --remote"

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 kastore"  
  - "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