Skip to content

Commit 18b0e83

Browse files
committed
Remove sphinx-testing dependency and update import
Eliminated the installation of sphinx-testing from the CI workflow and replaced its path import in tests/conftest.py with the standard os.path module.
1 parent 6c9b220 commit 18b0e83

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
run : |
3737
python -m pip install --upgrade pip
3838
pip install -e.[testing]
39-
pip install sphinx-testing
4039
- name: Run pytest
4140
run: |
4241
pytest --durations=10 --cov=sphinx_proof --cov-report=xml --cov-report=term-missing

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import shutil
22
import pytest
33

4-
from sphinx.testing.path import path
4+
from os import path
55

66
pytest_plugins = "sphinx.testing.fixtures"
77

0 commit comments

Comments
 (0)