-
Please answer these questions before submitting your issue. Thanks!
1. What version of Python are you using?
` 3.8.10`
2. What operating system and processor architecture are you using?
…
-
Despite fact that latest version has been mopved from `setuptools` to `poetry` pytest still needs `setuptools` (more precise `pkg_resources` which is parft of the `setuptools`)
```console
+ PYTHONP…
-
We modify `src/setup.py` to support editable installs via pipenv (`pipenv install -e .`, which invokes `pip install --editable`). Since distribution continues using build/pkgs/sagelib/src/setup.py,…
-
### First Check
- [X] I added a very descriptive title to this issue.
- [X] I used the GitHub search to find a similar issue and didn't find it.
- [X] I searched the FastAPI documentation, with the i…
-
# ¡Solicitud de mentorías!
Open Science Labs (OSL) es una comunidad que ofrece un espacio abierto para compartir, aprender y enseñar temas relacionados a Ciencia Abierta y Tecnologías computacional…
-
Running pytest-bdd with pytest 7.2 ([released a week ago](https://github.com/pytest-dev/pytest/releases/tag/7.2.0)) leads to:
```
pytest.PytestDeprecationWarning: The hookimpl pytest_bdd_after_ste…
-
I am implementing an end-to-end integration test suite using pytest-bdd. I need to execute multiple @when and @then asynchronously.
For instance, one @when might be moving a stepper motor, while an…
-
Commands are being parsed literally so is the equivalent of running `"ls -l"` instead of `ls -l` which results in error messages like `"ls -l"` not found.
-
A useful feature of `pytest` is its [`@pytest.mark.xfail` annotation](https://docs.pytest.org/en/latest/skipping.html#xfail-mark-test-functions-as-expected-to-fail), which indicates that a test should…
-
Since we want to support as many Python versions as possible (>=3.7), we must not use walrus operator (:=) available only [since 3.8](https://realpython.com/python38-new-features/).