Adding a travis config which tests the conda environment still works.
This commit is contained in:
parent
795e82858f
commit
e65c121adf
|
@ -0,0 +1,14 @@
|
||||||
|
language: python
|
||||||
|
python:
|
||||||
|
- "3.6"
|
||||||
|
|
||||||
|
install:
|
||||||
|
- 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"
|
||||||
|
- hash -r
|
||||||
|
- conda config --set always_yes yes --set changeps1 no
|
||||||
|
|
||||||
|
script:
|
||||||
|
- conda env create -f environment.yml
|
||||||
|
- source activate litex
|
Loading…
Reference in New Issue