Skip to content
Snippets Groups Projects

Fix pipline test

Merged Omid Hosseini requested to merge fix_pipline_test into master
1 unresolved thread
1 file
+ 31
37
Compare changes
  • Side-by-side
  • Inline
+ 31
37
@@ -17,47 +17,41 @@ cache:
stages:
- test
#before_script:
# - conda env create -f conda_envs/env-py36.yaml
# - source activate pyconda36
# - pip install -e .[dev]
linting:
image: python:3.6
tags:
- passoft
stage: test
script:
- flake8 --ignore=F405,F403 coverplot
- flake8 tests
image: python:3.6
tags:
- passoft
stage: test
script:
- pip install -e .[dev]
- flake8 --ignore=F405,F403 coverplot tests
python3.6:
tags:
- passoft
stage: test
script:
- conda env create -f conda_envs/env-py36.yaml
- source activate pyconda36
- pip install -e .[dev]
- python -m unittest
tags:
- passoft
stage: test
script:
- conda env create -f conda_envs/env-py36.yaml
- source activate pyconda36
- pip install -e .[dev]
- python -m unittest
python3.7:
tags:
- passoft
stage: test
script:
- conda env create -f conda_envs/env-py37.yaml
- source activate pyconda36
- pip install -e .[dev]
- python -m unittest
tags:
- passoft
stage: test
script:
- conda env create -f conda_envs/env-py37.yaml
- source activate pyconda37
- pip install -e .[dev]
- python -m unittest
python3.8:
image: python:3.8
tags:
- passoft
stage: test
script:
- conda env create -f conda_envs/env-py38.yaml
- source activate pyconda36
- pip install -e .[dev]
- python -m unittest
tags:
- passoft
stage: test
script:
- conda env create -f conda_envs/env-py38.yaml
- source activate pyconda38
- pip install -e .[dev]
- python -m unittest
Loading