Skip to content
Snippets Groups Projects

Conda packaging

Merged Maeva Pourpoint requested to merge conda_package into master
1 file
+ 12
6
Compare changes
  • Side-by-side
  • Inline
+ 58
4
@@ -20,17 +20,71 @@ stages:
before_script:
- pip install -e .[dev]
linting_python2:
image: python:2.7
tags:
- passoft
stage: test
script:
- flake8 --ignore=E722,E712 data2passcal
- flake8 --ignore=E722,E712 tests
python2:
linting_python3:
image: python:3.6
tags:
- passoft
stage: test
script:
- flake8 --ignore=E722,E712 data2passcal
- flake8 --ignore=E722,E712 tests
python2.7:
image: python:2.7
tags:
- passoft
stage: test
script: tox -e py27
script:
- cd tests/
- pwd
- ls
- python -m unittest test_data2passcal
python3:
python3.5:
image: python:3.5
tags:
- passoft
stage: test
script:
- pwd
- ls
- python -m unittest
python3.6:
image: python:3.6
tags:
- passoft
stage: test
script: tox -e py36
script:
- pwd
- ls
- python -m unittest
python3.7:
image: python:3.7
tags:
- passoft
stage: test
script:
- pwd
- ls
- python -m unittest
python3.8:
image: python:3.8
tags:
- passoft
stage: test
script:
- pwd
- ls
- python -m unittest
Loading