Merge branch 'ci-setup' into 'master'

SDK-2520: Configure CI

See merge request galaxy-client/galaxy-plugin-api!1
This commit is contained in:
Romuald Bierbasz
2019-02-11 12:02:02 +01:00
4 changed files with 15 additions and 1 deletions

12
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,12 @@
image: registry-gitlab.gog.com/galaxy-client/gitlab-ci-tools:latest
stages:
- test
test_package:
stage: test
script:
- pip install -r requirements.txt
- pytest
except:
- tags

View File

@@ -1 +0,0 @@
from galaxy.api.plugin import Plugin

2
pytest.ini Normal file
View File

@@ -0,0 +1,2 @@
[pytest]
addopts = --flakes

View File

@@ -1 +1,2 @@
pytest==4.2.0
pytest-flakes==4.0.0