https://github.com/ranahanocka/MeshCNN
Tip revision: 5bf0b899d48eb204b9b73bc1af381be20f4d7df1 authored by Rana Hanocka on 22 February 2022, 18:02:30 UTC
Update README.md
Update README.md
Tip revision: 5bf0b89
.travis.yml
notifications:
email:
on_success: never
on_failure: always
language: python
python:
- "3.6"
cache: pip
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/anaconda3
- source "$HOME/anaconda3/etc/profile.d/conda.sh"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# create meshcnn env
- conda env create -f environment.yml
- conda activate meshcnn
script:
- python -m pytest scripts/test_general.py