Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
soitool
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
Container Registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bachelor-paa-bittet
soitool
Commits
a5418129
Commit
a5418129
authored
5 years ago
by
tholok97
Browse files
Options
Downloads
Patches
Plain Diff
#14 ignorerer ny pylint feil
oppdaterer også Dockerfile til å installere med Python3.7 sin pip
parent
874d1c62
No related branches found
No related tags found
No related merge requests found
Pipeline
#70507
failed
5 years ago
Stage: lint
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+4
-2
4 additions, 2 deletions
Dockerfile
scripts/.pylintrc
+2
-1
2 additions, 1 deletion
scripts/.pylintrc
with
6 additions
and
3 deletions
Dockerfile
+
4
−
2
View file @
a5418129
...
...
@@ -24,11 +24,13 @@ RUN apt-get install -y libegl1-mesa-dev \
WORKDIR
/code
COPY
requirements.txt requirements.txt
RUN
pip3
install
-r
requirements.txt
RUN
python3.7
-m
pip
install
setuptools
RUN
python3.7
-m
pip
install
-r
requirements.txt
# Set the locale
# Necessary for container to properly handle æøå
# See issue #10
# inspired by https://stackoverflow.com/a/28406007/3545896
RUN
apt-get
install
-y
locales
RUN
locale-gen en_US.UTF-8
ENV
LANG en_US.UTF-8
...
...
This diff is collapsed.
Click to expand it.
scripts/.pylintrc
+
2
−
1
View file @
a5418129
...
...
@@ -141,7 +141,8 @@ disable=print-statement,
comprehension-escape,
E0611,
I1101,
E1101
E1101,
R0903
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment