summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-10-21 12:11:08 -0300
committerRoger Gonzalez <roger@rogs.me>2023-10-21 12:11:08 -0300
commit18dc90a4ded780929f8f5e1f3cbe7096e0e2487b (patch)
treeefd4acb6b998063eca8d8401c2b39913c8d71372
parente92e6bd1c4974f2a77d8ca690667519376e913d8 (diff)
Ignored .venv
-rw-r--r--.flake81
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--pyproject.toml2
3 files changed, 3 insertions, 2 deletions
diff --git a/.flake8 b/.flake8
index f54c19e..c64906c 100644
--- a/.flake8
+++ b/.flake8
@@ -1,3 +1,4 @@
[flake8]
max-line-length = 121
select = A,E,F,W,I,T4,C4,B,T,R,FS,ECE
+exclude = .venv
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 32b3a3b..b11af6c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ cache:
before_script:
- python --version ; pip --version # For debugging
- pip install virtualenv
- - virtualenv venv
+ - virtualenv .venv
- source venv/bin/activate
- pip install -r requirements.txt
diff --git a/pyproject.toml b/pyproject.toml
index 09e6750..e099d04 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -37,7 +37,7 @@ force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 121
-skip = "dockerdata,.idea,static"
+skip = "dockerdata,.idea,static,.venv/"
filter_files = true
[tool.mypy]