$ cat test_0.py
import sys
print(sys.path)
pytest -s test_0.py
['/usr/local/bin', (snip)]
python -m pytest -s test_0.py
['', (snip)]
/usr/local/bin 内の.pyを(ここではtest_0.py内で)暗黙的にimportすることは、python -m
だとできませんので注意。
私がこれで2時間ほどはまったので。。
Go to list of users who liked
More than 3 years have passed since last update.
$ cat test_0.py
import sys
print(sys.path)
pytest -s test_0.py
['/usr/local/bin', (snip)]
python -m pytest -s test_0.py
['', (snip)]
/usr/local/bin 内の.pyを(ここではtest_0.py内で)暗黙的にimportすることは、python -m
だとできませんので注意。
私がこれで2時間ほどはまったので。。
Register as a new user and use Qiita more conveniently
Go to list of users who liked