https://github.com/tskit-dev/msprime
Raw File
Tip revision: 2b7948e2679a14455bd4e14cf1ac6a66d7640a7d authored by Jerome Kelleher on 22 February 2019, 11:57:19 UTC
Merge pull request #712 from mcveanlab/0.7.0-final
Tip revision: 2b7948e
appveyor.yml
environment:
  matrix:
    - PYTHON: "C:\\Miniconda36-x64"
    # Disabling Py37. See https://github.com/tskit-dev/msprime/issues/653
    #- PYTHON: "C:\\Miniconda37-x64"
install:
  - "git submodule update --init --recursive"
  # We have symlinks in the repo, which need to be treated specially on Windows.
  - "git config core.symlinks true"
  - "git reset --hard"
  - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
  - "git submodule update --init --recursive"

build: false

test_script:
  - "conda config --add channels conda-forge"
  - "conda install -f --yes --file=requirements/conda-minimal.txt"
  - "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"
  - "python setup.py install"
  - "nosetests -vs"

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