Skip to content

Commit 6b1bfd2

Browse files
committed
Fix #70: Skipping a dev test
1 parent df39981 commit 6b1bfd2

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog #
22

3+
## Version 3.4.1 ##
4+
5+
In this release, test coverage is 76%.
6+
7+
🛠️ Bug fixes:
8+
9+
* [Issue #70](https://github.com/PlotPyStack/guidata/issues/70) - PermissionError: [Errno 13] Permission denied: '/usr/lib/python3/dist-packages/guidata/tests/data/genreqs/requirements.rst'
10+
11+
312
## Version 3.4.0 ##
413

514
In this release, test coverage is 76%.

guidata/tests/unit/test_genreqs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
"""Generate install requirements RST table."""
77

8+
import pytest
9+
810
from guidata.tests import get_path
911
from guidata.utils import genreqs
1012

@@ -18,6 +20,7 @@ def test_compare_cfg_toml():
1820
assert req_toml == req_cfg
1921

2022

23+
@pytest.mark.skip(reason="This test should be run manually (development only)")
2124
def test_generate_requirement_tables():
2225
"""Test generate_requirement_tables."""
2326
genreqs.gen_path_req_rst(GR_PATH, "guidata", ["Python>=3.8", "PyQt>=5.11"], GR_PATH)

0 commit comments

Comments
 (0)