summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin ! <just1602@riseup.net>2020-11-09 14:20:09 -0500
committerjelle van der Waa <jelle@vdwaa.nl>2020-11-11 22:23:29 +0100
commit7371ee0ab392e973c70b36ee1bf907c2b03dbc34 (patch)
tree58eadace51c3206e6cde93770f4c02b9a1ba820f
parent5a1b8b6125740561fc9c194bec8c5db4d230b7d3 (diff)
downloadarchweb-7371ee0ab392e973c70b36ee1bf907c2b03dbc34.tar.gz
archweb-7371ee0ab392e973c70b36ee1bf907c2b03dbc34.zip
Update CIs to not check migrations
-rw-r--r--.github/workflows/main.yml2
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--.travis.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 59a270a3..cba2b62c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -21,7 +21,7 @@ jobs:
run: |
pip install pylint
pylint devel main mirrors news packages releng templates todolists visualize *.py
- flake8 devel main mirrors news packages releng templates todolists visualize *.py
+ flake8 --exclude */migrations/ devel main mirrors news packages releng templates todolists visualize *.py
- name: Run collectstatic
run: |
python manage.py collectstatic --noinput
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5203ed2f..740aa0bd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,7 +9,7 @@ before_script:
lint:
script:
- pylint devel main mirrors news packages releng templates todolists visualize *.py
- - flake8 devel main mirrors news packages releng templates todolists visualize *.py
+ - flake8 --exclude */migrations/ devel main mirrors news packages releng templates todolists visualize *.py
# TODO: https://docs.gitlab.com/ee/ci/junit_test_reports.html
test:
diff --git a/.travis.yml b/.travis.yml
index e7abbadd..d9c89531 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ script:
- python manage.py collectstatic --noinput
- coverage run --rcfile .coveragerc manage.py test
- pylint devel main mirrors news packages releng templates todolists visualize *.py
- - flake8 devel main mirrors news packages releng templates todolists visualize *.py
+ - flake8 --exclude */migrations/ devel main mirrors news packages releng templates todolists visualize *.py
after_success:
- coveralls