We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pytest.el cloned from git
pytest.el
Running pytest-one complains about:
pytest-one
pytest-check-test-file: '/path/tests/test_module.py::TestClass::test_method' is not an extant file.
I have solved the issue changing pytest-check-test-file:
pytest-check-test-file
(defun pytest-check-test-file (path) (let ((actual-path (car (s-split "::" path)))) (if (not (file-exists-p actual-path)) (error (format "'%s' is not an extant file." actual-path)))))
The text was updated successfully, but these errors were encountered:
Solved issue ionrock#18.
985ea8d
Duplicate of #14 I think, which is now fixed.
Sorry, something went wrong.
No branches or pull requests
pytest.el
cloned from gitRunning
pytest-one
complains about:pytest-check-test-file: '/path/tests/test_module.py::TestClass::test_method' is not an extant file.
I have solved the issue changing
pytest-check-test-file
:The text was updated successfully, but these errors were encountered: