https://github.com/tskit-dev/msprime
Raw File
Tip revision: 661200e8fc310d374eb266cad39d4d3d96f0b8e9 authored by Jerome Kelleher on 20 June 2018, 08:04:51 UTC
Merge pull request #539 from mcveanlab/changelog-0.6.0
Tip revision: 661200e
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