Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coverplot
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
coverplot
Merge requests
!9
Fix pipline test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix pipline test
fix_pipline_test
into
master
Overview
7
Commits
5
Pipelines
2
Changes
7
1 unresolved thread
Hide all comments
Merged
Omid Hosseini
requested to merge
fix_pipline_test
into
master
3 years ago
Overview
7
Commits
5
Pipelines
2
Changes
1
1 unresolved thread
Hide all comments
Expand
Fix the pipeline test.
👍
0
👎
0
Merge request reports
Viewing commit
c3928d93
Prev
Next
Show latest version
1 file
+
31
−
37
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
c3928d93
Fix conda envs issues
· c3928d93
Omid Hosseini
authored
3 years ago
.gitlab-ci.yml
+
31
−
37
Options
@@ -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 pyconda3
6
-
pip install -e .[dev]
-
python -m unittest
tags
:
-
passoft
stage
:
test
script
:
-
conda env create -f conda_envs/env-py37.yaml
-
source activate pyconda3
7
-
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