From 05cbf8e5ea0c754645934c1b8d3b69c44856838e Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Wed, 21 Sep 2022 19:07:48 +0300 Subject: [PATCH] call run_pylint on gitlab --- .github/workflows/ci.yml | 3 +-- .gitlab-ci.yml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35c8480f..b48e9829 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: curl -L -O https://tiker.net/ci-support-v0 . ci-support-v0 build_py_project - run_pylint "$(basename $GITHUB_REPOSITORY)" test/test_*.py + run_pylint "$(basename $GITHUB_REPOSITORY)" examples/*.py, test/*.py docs: name: Documentation @@ -87,7 +87,6 @@ jobs: build_py_project_in_conda_env run_examples - downstream_tests: strategy: matrix: diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ce90a893..2206c222 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -134,6 +134,7 @@ Pylint: - curl -L -O https://tiker.net/ci-support-v0 - . ci-support-v0 - build_py_project + - run_pylint "$(basename $GITHUB_REPOSITORY)" examples/*.py, test/*.py tags: - python3 except: -- GitLab