Releases: mdmintz/pynose
Releases · mdmintz/pynose
1.5.3 - Update line separator and build system
Update line separator and build system
- Update the line separator during test results
--> This resolves #40 - Switch to a pyproject.toml build system
--> This resolves #41
1.5.2 - Update License
Update License
1.5.1 - Logging Optimizations
Logging Optimizations
- Add options for customizing the logging experience
--> This resolves #23
1.5.0 - Code optimizations and refactoring
1.5.0 - Code optimizations and refactoring
- Refactor and optimize code
- Drop support for Python 3.6
- Officially support Python 3.13
1.4.8 - Add options for capturing output
Add options for capturing output
- This resolves #11
To enable capture, set a Python env variable called "NOSE_CAPTURE" to "1".
It can be done like this in an __init__.py
file:
import os
os.environ["NOSE_CAPTURE"] = "1"
This restores the default setting of nose
, which is capturing output.
(Note that if output is captured, print()
calls won't be seen.)
Capturing output can also be enabled with: --capture-output
.
1.4.7 - Fix new flake8 issues
Fix new flake8 issues
1.4.6 - Fix DeprecationWarning
Fix DeprecationWarning
- Fix DeprecationWarning
- This resolves #7 (
"DeprecationWarning: pkg_resources is deprecated as an API."
)
1.4.5 - Fix issue with "inspect" on Python 3.11
1.4.4 - Always print output of "print()" statements
Always print the output of print()
statements
- Always print the output of print() statements (
-s
is always set now)
--> a50362e
--> This is the same as-s
always being active.
--> Personally, I've always wanted this, as it's needed forpdb
debugging to work.