File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ environment :
2
+ matrix :
3
+ - PYTHON_VERSION : " 3.6"
4
+ PYTHON_ARCH : " 64"
5
+ MINICONDA : C:\Miniconda36-x64
6
+
7
+ branches :
8
+ only :
9
+ - master
10
+ - /release-.*/
11
+
12
+ skip_commits :
13
+ message : /\[av skip\]/
14
+
15
+ notifications :
16
+ - provider : Email
17
+ on_build_success : false
18
+ on_build_failure : false
19
+ on_build_status_changed : false
20
+
21
+ init :
22
+ - " ECHO %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"
23
+
24
+ install :
25
+ - " SET PATH=%MINICONDA%;%MINICONDA%\\ Scripts;%PATH%"
26
+ - conda config --set always_yes yes --set changeps1 no
27
+ - conda update -q conda
28
+ - conda install -n root _license
29
+ - conda info -a
30
+ - " conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy cython nose pytorch -c pytorch"
31
+ - activate test-environment
32
+
33
+ build_script :
34
+ - pip install -e ".[test]"
35
+ - python -c "import nltk; nltk.download('cmudict')"
36
+
37
+ test_script :
38
+ - nosetests -v -w tests/ -a "!local_only"
You can’t perform that action at this time.
0 commit comments