From 5887612a5491a0a2d4138bc93f7e6a34102edf97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Balajti?= <mate.balajti@unibas.ch> Date: Mon, 18 Sep 2023 11:56:21 +0200 Subject: [PATCH] refactor: ci and tests --- .gitlab-ci.yml | 2 +- tests/test_cdna.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3ff981c..38b2edf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,4 +31,4 @@ lint-test-job: # This job also runs in the test stage. - pip install -e . - flake8 --docstring-convention google cdna/ tests/ - pylint cdna/ tests/ - - mypy cdna/ \ No newline at end of file + - mypy cdna/ tests/ \ No newline at end of file diff --git a/tests/test_cdna.py b/tests/test_cdna.py index 102f423..43bb563 100644 --- a/tests/test_cdna.py +++ b/tests/test_cdna.py @@ -1,5 +1,5 @@ """Tests for cDNA functions.""" -import pytest +import pytest # type: ignore from cdna.cdna import complement, seq_complement -- GitLab