# HG changeset patch # User Arthur Lutz # Date 1566551806 -7200 # Node ID 741dc2590f9071de174db6e25489a221967c22d6 # Parent 1a5eb9a9f5b42fe7dd5f5fc38f3007a884d0a49d [.gitlab-ci] initial version (tox targets) diff -r 1a5eb9a9f5b4 -r 741dc2590f90 .gitlab-ci.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.gitlab-ci.yml Fri Aug 23 11:16:46 2019 +0200 @@ -0,0 +1,13 @@ +image: python + +before_script: + - pip install tox + +flake8: + script: tox -e flake8 + +py27: + script: tox -e py27 + +py3: + script: tox -e py3