blob: 0d78590e57a523145d51eb58b7d620f2517c254a [file] [log] [blame] [edit]
# Test cases related to environment variables
[case testEnvvar_MYPY_CONFIG_FILE_DIR]
# cmd: mypy --config-file=subdir/mypy.ini
[file bogus.py]
FOO = 'x' # type: int
[file subdir/good.py]
BAR = 0 # type: int
[file subdir/mypy.ini]
\[mypy]
files=$MYPY_CONFIG_FILE_DIR/good.py