Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tkeqcut
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
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
Legacy
tkeqcut
Merge requests
!4
Porting Python 2 code to Python 3
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Porting Python 2 code to Python 3
python_2to3
into
master
Overview
0
Commits
2
Pipelines
1
Changes
6
Merged
Maeva Pourpoint
requested to merge
python_2to3
into
master
4 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
👍
0
👎
0
Merge request reports
Viewing commit
56b7852b
Prev
Next
Show latest version
2 files
+
17
−
22
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
56b7852b
Update tox.ini and .gitlab-ci.yml to test Python 3 code updates
· 56b7852b
Maeva Pourpoint
authored
4 years ago
.gitlab-ci.yml
+
15
−
6
Options
@@ -20,17 +20,26 @@ stages:
before_script
:
-
pip install -e .[dev]
python3.6
:
image
:
python:3.6
tags
:
-
passoft
stage
:
test
script
:
-
python -m unittest
python
2
:
image
:
python:
2
.7
python
3.7
:
image
:
python:
3
.7
tags
:
-
passoft
stage
:
test
script
:
tox -e py27
script
:
-
python -m unittest
python3
:
image
:
python:3.
6
python3
.8
:
image
:
python:3.
8
tags
:
-
passoft
stage
:
test
script
:
tox -e py36
script
:
-
python -m unittest
Loading