diff --git a/.gitignore b/.gitignore index 5ceb386..d3102e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ +*.pyc + venv diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b79703..44e0217 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,6 @@ stages: - linting + - test flake8: @@ -18,3 +19,9 @@ pylint: - pip install pylint --no-cache-dir script: pylint main.py allow_failure: true + + +test: + stage: test + image: python:3-alpine + script: ./main.py