Skip to content

Commit

Permalink
Fix #70: Skipping a dev test
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Mar 12, 2024
1 parent df39981 commit 6b1bfd2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog #

## Version 3.4.1 ##

In this release, test coverage is 76%.

🛠️ Bug fixes:

* [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'


## Version 3.4.0 ##

In this release, test coverage is 76%.
Expand Down
3 changes: 3 additions & 0 deletions guidata/tests/unit/test_genreqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

"""Generate install requirements RST table."""

import pytest

from guidata.tests import get_path
from guidata.utils import genreqs

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


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

0 comments on commit 6b1bfd2

Please sign in to comment.