blob: 8832f80cff3cf2d77ecc8a2f24bea92728f1803c [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