Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bliss
python-handel
Commits
e03c7672
Commit
e03c7672
authored
Aug 02, 2017
by
Vincent Michel
Browse files
CI runs tests for multiple python version
parent
d578c631
Pipeline
#793
passed with stages
in 1 minute and 18 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
e03c7672
before_script
:
-
source activate tango2.7
-
conda install cffi
test
s
:
test
2.7
:
stage
:
test
script
:
python setup.py test
script
:
-
conda create -n p27 python=2.7 cffi numpy
-
source activate p27
-
python setup.py test
test3.6
:
stage
:
test
script
:
-
conda create -n p36 python=3.6 cffi numpy
-
source activate p36
-
python setup.py test
artifacts
:
paths
:
-
htmlcov/
expire_in
:
7 days
pages
:
stage
:
deploy
script
:
...
...
setup.py
View file @
e03c7672
...
...
@@ -11,7 +11,7 @@ setup(
version
=
'0.1.0.dev0'
,
packages
=
[
'handel'
],
install_requires
=
[
'cffi'
],
install_requires
=
[
'cffi'
,
'numpy'
],
setup_requires
=
[
'pytest-runner'
,
'pytest'
]
if
TESTING
else
[],
tests_require
=
[
'pytest-cov'
,
'mock'
],
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment