forked from reanahub/reana-workflow-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
addresses reanahub/reana#450
- Loading branch information
Showing
6 changed files
with
68 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[flake8] | ||
max-line-length = 89 | ||
|
||
exclude = | ||
build | ||
modules | ||
dist | ||
docs | ||
coverage.xml | ||
reana_job_controller.egg-info | ||
.*/ | ||
env/ | ||
.git | ||
__pycache__ | ||
|
||
ignore = E203, E231, E266, E501, W503, F403, F401 | ||
|
||
max-complexity = 18 | ||
|
||
select = B,C,E,F,W,T4,B9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
# This file is part of REANA. | ||
# Copyright (C) 2017, 2018 CERN. | ||
# Copyright (C) 2017, 2018, 2019, 2020 CERN. | ||
# | ||
# REANA is free software; you can redistribute it and/or modify it | ||
# under the terms of the MIT License; see LICENSE file for more details. | ||
|
||
FROM fedora:25 | ||
# hadolint ignore=DL3041 | ||
RUN dnf -y update &&\ | ||
dnf install -y gcc gcc-c++ graphviz-devel ImageMagick python-devel libffi-devel openssl openssl-devel unzip nano autoconf automake libtool python-pip &&\ | ||
dnf install -y dnf redhat-rpm-config | ||
ADD . /code | ||
dnf install -y dnf redhat-rpm-config &&\ | ||
dnf clean all | ||
COPY . /code | ||
WORKDIR /code | ||
# hadolint ignore=DL3013 | ||
RUN pip install --upgrade pip &&\ | ||
pip install -e .[all] | ||
pip install -e '.[all]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters