Christian Clauss
Christian Clauss
Please add `import sys` to `bin/whatis.py` > Error: bin/whatis.py:23:5: F821 Undefined name `sys`
Do you use the tools `uv` or `pipx` or `brew`? * #525
`uv` is awesome! In the project root directory, please run: ```bash uv tool install pre-commit pre-commit install pre-commit run --all-files ```
`test_pbpaste_help` passes. I think it is getting hung up on the next file which is `tests/pip/test_pip.py` EDIT: Confirmed at https://github.com/ywangd/stash/pull/524/commits
https://github.com/ywangd/stash/blob/7e25b57ac2e5204dff91587bca56e1e7bf3ee60b/tests/stashtest.py#L21 You might try: ```diff - ON_TRAVIS = "TRAVIS" in os.environ + ON_TRAVIS = "CI" in os.environ ``` * https://docs.travis-ci.com/user/environment-variables/#default-environment-variables * https://docs.github.com/en/actions/reference/workflows-and-actions/variables#default-environment-variables
The `dev` branch is a bad idea. It is way behind `master` and its tests fail, and it is unintuitive to contribute to a branch other than the default branch....
It is unintuitive to install `dev` or `master` instead of installing releases like the vast majority of GitHub and Gitlab repos. Tools like Dependabot, etc., work on the default branch,...
I am reluctant to merge code with failing tests, so we should mark failing tests with @unittest.skip, skipIf, or skipUnless, or pytest xfail, etc. We should mark these tests with...
A new version of `nan` was recently released. Please retry with that release. https://www.npmjs.com/package/nan
`self.threading.currentThread()` --> `self.threading.current_thread()` fixed in #553