https://github.com/histocartography/histocartography
Raw File
Tip revision: 5a9e54c009cd0f2890e8cf8fd456249244c3bc75 authored by Antonio Foncubierta Rodríguez on 15 April 2021, 18:39:38 UTC
Update setup.py
Tip revision: 5a9e54c
.travis.yml
vm:
  size: 2x-large
language: python
python:
  - 3.7
before_install:
  # download and install miniconda
  - wget http://repo.continuum.io/miniconda/Miniconda3-4.1.11-Linux-x86_64.sh -O miniconda.sh;
  - bash miniconda.sh -b -p $HOME/conda
  - export PATH="$HOME/conda/bin:$PATH"
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  # create and activate the build/test environment
  - conda create -q -n histocartography python=$TRAVIS_PYTHON_VERSION pip cmake
  - source activate histocartography
  - python --version
  - pip install -U pip==20.2.4
install:
  - conda env update -q --file environment.yml
  - pip install black pep8 
  - pip install -e .
script:
  # tests
  - python -m unittest discover -s test -p "test_*" -v
  # build the docs
  #  cd docs && make html && cd ..
back to top