diff options
| author | Abhilash Raj | 2015-06-29 13:31:23 +0530 |
|---|---|---|
| committer | Abhilash Raj | 2015-06-29 13:31:23 +0530 |
| commit | 02aa81950d430829b94b6df87d446d7f171eb811 (patch) | |
| tree | d418dd18a758350970f1755cca30aa63dd126000 /.gitlab-ci.yml | |
| parent | 3c433bef4b160f32979faac6c6e1f06d21e66c89 (diff) | |
| download | mailman-02aa81950d430829b94b6df87d446d7f171eb811.tar.gz mailman-02aa81950d430829b94b6df87d446d7f171eb811.tar.zst mailman-02aa81950d430829b94b6df87d446d7f171eb811.zip | |
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..80ee37207 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +# This is core test runner +before_script: + - pip install tox + +sqlite: + script: + - tox + + tags: + - sqlite + + +pgsql: + script: + - MAILMAN_EXTRA_TESTING_CFG=/data/postgres.cfg tox -e pg + + tags: + - postgres |
