Skip to content

Commit

Permalink
lint: fix custom mypy cache dir setting
Browse files Browse the repository at this point in the history
  • Loading branch information
fjahr committed Sep 28, 2023
1 parent 1d4846a commit f904777
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/lint/lint-python.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@
"""

import os
from pathlib import Path
import subprocess
import sys

from importlib.metadata import metadata, PackageNotFoundError

# Customize mypy cache dir via environment variable
cache_dir = Path(__file__).parent.parent / ".mypy_cache"
os.environ["MYPY_CACHE_DIR"] = str(cache_dir)

DEPS = ['flake8', 'lief', 'mypy', 'pyzmq']
MYPY_CACHE_DIR = f"{os.getenv('BASE_ROOT_DIR', '')}/test/.mypy_cache"

# All .py files, except those in src/ (to exclude subtrees there)
FLAKE_FILES_ARGS = ['git', 'ls-files', '*.py', ':!:src/*.py']
Expand Down

0 comments on commit f904777

Please sign in to comment.