We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e34bb28 commit c9d3230Copy full SHA for c9d3230
CHANGELOG.md
@@ -14,6 +14,10 @@ adheres to [Semantic Versioning](https://semver.org/).
14
- Allow to `seek` past the end of the fileobj
15
- Calling `len` on a fileobj gives its length, and `bool` tells if it is empty
16
17
+### :house: Internal
18
+
19
+- Test that no warnings are generated
20
21
## [0.1.2] - 2021-09-19
22
23
[0.1.2]: https://github.com/rogdham/python-xz/releases/tag/v0.1.2
pytest.ini
@@ -2,6 +2,10 @@
2
addopts =
3
--cov
4
--strict-markers
5
+filterwarnings =
6
+ error
7
+ # issue in standard lib for Python 3.7.12[pypy-7.3.6-final]
8
+ ignore:Using or importing the ABCs from 'collections':DeprecationWarning:_lzma
9
markers =
10
generate_integration_files
11
integration
0 commit comments