From 8140dc3232353f66bd12a4b3b759c69cf3d33671 Mon Sep 17 00:00:00 2001
From: Peter Hutterer <peter.hutterer@who-t.net>
Date: Mon, 26 Aug 2019 15:15:12 +1000
Subject: [PATCH] Add a basic gitlab CI script

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
---
 .gitlab-ci.yml | 21 +++++++++++++++++++++
 setup.cfg      |  9 +++++++++
 2 files changed, 30 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..6e19e4c
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,21 @@
+# vim: set expandtab shiftwidth=2 tabstop=8 textwidth=0:
+
+variables:
+  ARCH_PKGS: 'flake8'
+
+.default_setup:
+  image: archlinux/base
+  before_script:
+    - pacman -S --refresh
+    - pacman -S --sysupgrade --noconfirm
+    - pacman -S --noconfirm $ARCH_PKGS
+
+flake:
+  extends: .default_setup
+  script:
+    - python3 setup.py flake8
+
+install:
+  extends: .default_setup
+  script:
+    - python3 setup.py install
diff --git a/setup.cfg b/setup.cfg
index b88034e..45887f8 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,11 @@
 [metadata]
 description-file = README.md
+
+[flake8]
+ignore =
+    # E501: line too long
+    E501,
+    # W504: line break after binary operator
+    W504
+exclude = .git, __pycache__, __init__.py
+filename = *.py
-- 
GitLab