Skip to content
Snippets Groups Projects
Commit 4aa03abd authored by Olivier Bertrand's avatar Olivier Bertrand
Browse files

Update .gitlab-ci.yml

Replace python3 with 3.5
parent 13fbaf0f
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
image: python:latest image: python:latest
before_script: before_script:
- python3 -V # Print out python version for debugging - python3.5 -V # Print out python version for debugging
stages: stages:
- build - build
...@@ -11,7 +11,7 @@ stages: ...@@ -11,7 +11,7 @@ stages:
build: build:
script: script:
- python3 setup.py bdist_wheel - python3.5 setup.py bdist_wheel
# an alternative approach is to install and run: # an alternative approach is to install and run:
# - pip3 install dist/* # - pip3 install dist/*
# run the command here # run the command here
...@@ -21,7 +21,7 @@ build: ...@@ -21,7 +21,7 @@ build:
test: test:
script: script:
- python3 setup.py test - python3.5 setup.py test
- pip3 install tox flake8 # you can also use tox - pip3 install tox flake8 # you can also use tox
- tox -e py36,flake8 - tox -e py36,flake8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment