forked from numbbo/coco
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
37 lines (32 loc) · 1.09 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
build: false
environment:
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda
CYGWIN: C:\cygwin
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda36
CYGWIN: C:\cygwin
init:
- cmd: "ECHO %PYTHON_VERSION% %MINICONDA%"
- cmd: "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- cmd: "set PATH=%PATH%;%CYGWIN%;%CYGWIN%\\bin"
- cmd: "set PATH=C:\\Program Files\\MiKTeX 2.9\\miktex\\bin\\x64;%PATH%"
install:
- cmd: conda install -y matplotlib numpy scipy setuptools six pytest cython
- cmd: python do.py run-python
- cmd: python do.py install-postprocessing
test_script:
# run the experiment
- cmd: cd code-experiments\build\python
- cmd: python example_experiment.py bbob
- cmd: python -m cocopp -o .\postproc .\exdata\random_search_on_bbob_budget0002xD
- cmd: cd ..\..\..
# run the tests
- cmd: python do.py build-python
- cmd: python do.py test-python
- cmd: python do.py test-java
- cmd: python do.py test-preprocessing
- cmd: python do.py test-postprocessing
- cmd: python do.py test-suites
# - cmd: python do.py test-postprocessing-all