Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
poezio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
205
Issues
205
List
Boards
Labels
Service Desk
Milestones
Merge Requests
10
Merge Requests
10
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
poezio
poezio
Commits
abe1941a
Unverified
Commit
abe1941a
authored
Oct 27, 2019
by
mathieui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: add a linting stage, and put mypy in there
Obviously failing at the moment.
parent
80a7babc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
.gitlab-ci.yml
.gitlab-ci.yml
+12
-3
No files found.
.gitlab-ci.yml
View file @
abe1941a
stages
:
-
lint
-
test
-
build
...
...
@@ -31,7 +32,7 @@ build-ubuntu:
-
master
security-check
:
stage
:
tes
t
stage
:
lin
t
image
:
python:3
script
:
-
pip3 install safety
...
...
@@ -78,7 +79,7 @@ pytest-latest:
-
py.test -v test/
pylint-latest
:
stage
:
tes
t
stage
:
lin
t
image
:
python:3
script
:
-
apt-get update && apt-get install -y libidn11-dev
...
...
@@ -91,7 +92,7 @@ pylint-latest:
-
pylint -E poezio
pylint-plugins
:
stage
:
tes
t
stage
:
lin
t
image
:
python:3
allow_failure
:
true
script
:
...
...
@@ -101,3 +102,11 @@ pylint-plugins:
-
pip3 install -r requirements-plugins.txt
-
python3 setup.py install
-
pylint -E plugins
mypyc
:
stage
:
lint
image
:
python:3
allow_failure
:
true
script
:
-
pip3 install mypy
-
mypyc --ignore-missing-imports ./poezio
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment