-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy path.travis.yml
23 lines (23 loc) · 898 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: python
python:
- "3.6"
before_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/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- export PYTHONPATH="./Libs/Python/"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
install:
- conda create -q -y -c rdkit -n test-environment python=$TRAVIS_PYTHON_VERSION rdkit
- source activate test-environment
- pip install keen
- pip install repostat
- pip install jsonschema
script:
- python -m Scripts.Validation.Validate_Templates
- python -m Scripts.Validation.Validate_Annotations_Media
- python -m Scripts.Validation.Validate_Compounds_JSON -s Biochemistry/compounds.json
- python -m Scripts.Validation.Validate_Reactions_JSON -sc Biochemistry/reactions.json