starting phase `check' ============================= test session starts ============================== platform linux -- Python 3.8.2, pytest-5.3.5, py-1.8.1, pluggy-0.13.1 rootdir: /tmp/guix-build-python-dotenv-0.18.0.drv-0/source, inifile: setup.cfg plugins: hypothesis-5.4.1 collected 132 items tests/test_cli.py ..F............F.......... [ 19%] tests/test_ipython.py ... [ 21%] tests/test_main.py ..................................................... [ 62%] [ 62%] tests/test_parser.py ........................................... [ 94%] tests/test_utils.py . [ 95%] tests/test_variables.py ...... [100%] =================================== FAILURES =================================== ______________________________ test_list_no_file _______________________________ cli = def test_list_no_file(cli): result = cli.invoke(dotenv.cli.list, []) > assert (result.exit_code, result.output) == (1, "") E AssertionError: assert (-1, '') == (1, '') E At index 0 diff: -1 != 1 E Use -v to get the full diff tests/test_cli.py:31: AssertionError __________________________ test_set_non_existent_file __________________________ cli = def test_set_non_existent_file(cli): result = cli.invoke(dotenv.cli.set, ["a", "b"]) > assert (result.exit_code, result.output) == (1, "") E AssertionError: assert (-1, '') == (1, '') E At index 0 diff: -1 != 1 E Use -v to get the full diff tests/test_cli.py:113: AssertionError =============================== warnings summary =============================== tests/test_ipython.py::test_ipython_existing_variable_no_override tests/test_ipython.py::test_ipython_existing_variable_override tests/test_ipython.py::test_ipython_new_variable /gnu/store/m6wza0kv26bnpfaavw8xs1gw2cls6369-python-ipython-7.9.0/lib/python3.8/site-packages/IPython/paths.py:67: UserWarning: IPython parent '/' is not a writable location, using a temp directory. warn("IPython parent '{0}' is not a writable location," -- Docs: https://docs.pytest.org/en/latest/warnings.html ================== 2 failed, 130 passed, 3 warnings in 4.49s ===================