From 6bd2b3c66c9040786f1088ce36b46f867cf538dc Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 26 Jan 2021 16:50:52 +0100 Subject: [PATCH] =?UTF-8?q?On=20ex=C3=A9cute=20le=20programme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Yohann D'ANELLO --- .gitignore | 2 ++ .gitlab-ci.yml | 7 +++++++ 2 files changed, 9 insertions(+) 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