-
Notifications
You must be signed in to change notification settings - Fork 68
/
appveyor.yml
49 lines (41 loc) · 1.06 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
build: false
platform:
- x86
- x64
environment:
matrix:
# Python 3.5, 64 bit (only working version according to TensorFlow docs)
- MINICONDA: C:\Miniconda35-x64
# Python 3.6
- MINICONDA: C:\Miniconda36-x64
matrix:
exclude:
# Python 3.5
- MINICONDA: C:\Miniconda35-x64
platform: x86
- MINICONDA: C:\Miniconda36-x64
platform: x86
allow_failures:
- platform: x86
- MINICONDA: C:\Miniconda-x64
- MINICONDA: C:\Miniconda36-x64
init:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%MINICONDA%\\Library\\bin;%PATH%"
install:
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda update -q conda
- "python -m pip install --upgrade pip"
- "pip install --upgrade tensorflow"
- "pip install -q pytest"
- "pip install matplotlib"
- "pip install numpy"
- "pip install pandas"
- "pip install scipy"
- "pip install scikit-learn"
- "pip install nltk"
- "pip install keras"
- "echo done"
# command to run tests
test_script:
python ./HDLTex/HDLTex.py