forked from AIM-Harvard/pyradiomics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scikit-ci.yml
62 lines (51 loc) · 1.71 KB
/
scikit-ci.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
50
51
52
53
54
55
56
57
58
59
60
61
schema_version: "0.5.0"
before_install:
appveyor:
environment:
PATH: $<PYTHON_DIR>;$<PYTHON_DIR>\\Scripts;$<PATH>
RUN_ENV: .\\..\\addons\\appveyor\\run-with-visual-studio.cmd
commands:
- python ../addons/appveyor/patch_vs2008.py
circle:
environment:
PATH: /opt/python/$<MANYLINUX_PYTHON>/bin:$<PATH>
commands:
- rm -rf dist/*
travis:
osx:
environment:
PATH: $<HOME>/.pyenv/versions/$<PYTHON_VERSION>/bin:$<PATH>
commands:
- python ../addons/travis/install_pyenv.py
install:
commands:
- python --version
- python -m pip install --disable-pip-version-check --upgrade pip
- $<RUN_ENV> pip install wheel>=0.29.0
- $<RUN_ENV> pip install setuptools>=28.0.0
- $<RUN_ENV> pip install --trusted-host www.itk.org -f https://itk.org/SimpleITKDoxygen/html/PyDownloadPage.html SimpleITK>=0.9.1
- $<RUN_ENV> python -c "import SimpleITK; print('SimpleITK Version:' + SimpleITK.Version_VersionString())"
- $<RUN_ENV> pip install -r requirements.txt
- $<RUN_ENV> pip install -r requirements-dev.txt
before_build:
commands:
- flake8
build:
commands:
- python setup.py sdist
- $<RUN_ENV> python setup.py bdist_wheel
# circle:
# commands:
# - |
# # Since there are no external shared libraries to bundle into the wheels
# # this step will fixup the wheel switching from 'linux' to 'manylinux1' tag
# for whl in dist/*$(uname -p).whl; do
# auditwheel repair $whl -w ./dist/
# rm $whl
# done
test:
commands:
- $<RUN_ENV> python setup.py test --args="--with-xunit --logging-level=DEBUG"
circleci:
commands:
- cp nosetests.xml $CIRCLE_TEST_REPORTS