Heidi Hurst created BEAM-12568:
----------------------------------
Summary: Unable to Run Pytest in Dev Envt
Key: BEAM-12568
URL: https://issues.apache.org/jira/browse/BEAM-12568
Project: Beam
Issue Type: Bug
Components: testing
Environment: Mac OS 11.4
Docker version 20.10.7, build f0df350
Reporter: Heidi Hurst
After spinning up the Docker envt using {{start-build-env.sh}} and following
the instructions to create a virtual environment for python testing
[here|https://cwiki.apache.org/confluence/display/BEAM/Python+Tips], I
repeatedly received the error {{ImportError: cannot import name
'console_main'}} when trying to run pytest. This seems to be due to the pytest
version or Dockerfile setup, unclear (see [this pytest
issue|https://github.com/pytest-dev/pytest/issues/7650] or [this
thread|https://github.com/web-platform-tests/wpt/issues/24880] for similar
examples).
Changing {{console_main}} to {{main}} in {{/usr/local/bin/pytest}} as below,
i.e. from
{code:python}
import re
import sys
from pytest import main
if __name__ == '__console_main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(console_main())
{code}
to the following
{code:python}
import re
import sys
from pytest import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())
{code}
allowed me to run pytest within my environment without issue.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)