Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pydgets
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
713
Mentat
Pydgets
Merge requests
!2
Check deprecation warnings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Check deprecation warnings
hruska-feature-deprecation-warnings
into
devel
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Rajmund Hruška
requested to merge
hruska-feature-deprecation-warnings
into
devel
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
devel
devel (base)
and
latest version
latest version
05c99019
1 commit,
2 years ago
2 files
+
12
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
11
−
1
Options
@@ -26,15 +26,18 @@ before_script:
@@ -26,15 +26,18 @@ before_script:
stages
:
# List of stages for jobs, and their order of execution
stages
:
# List of stages for jobs, and their order of execution
-
test
-
test
-
check-warnings
-
build
-
build
-
deploy
-
deploy
unit-test-job
:
unit-test-job
:
stage
:
test
stage
:
test
script
:
script
:
-
make test
-
make test
2>&1 | tee errors.log
artifacts
:
artifacts
:
when
:
always
when
:
always
paths
:
-
errors.log
reports
:
reports
:
junit
:
nosetests.xml
junit
:
nosetests.xml
@@ -48,6 +51,13 @@ pyflakes-test-job:
@@ -48,6 +51,13 @@ pyflakes-test-job:
script
:
script
:
-
make pyflakes
-
make pyflakes
check-deprecation-warnings
:
before_script
:
[]
stage
:
check-warnings
script
:
-
"
if
[[
$(grep
DeprecationWarning
errors.log)
]];
then
cat
errors.log;
exit
1;
fi"
allow_failure
:
true
build-job
:
build-job
:
stage
:
build
stage
:
build
script
:
script
:
Loading