Skip to content

Commit

Permalink
馃И TESTS: Ensure myst-docutils does not install sphinx (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Dec 27, 2021
1 parent b8f3b1a commit 30c44d5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/tests.yml
Expand Up @@ -84,6 +84,15 @@ jobs:
python -m pip install --upgrade pip
pip install .
pip install docutils==${{ matrix.docutils-version }}
- name: ensure sphinx is not installed
run: |
python -c "\
try:
import sphinx
except ImportError:
pass
else:
raise AssertionError()"
- name: Run docutils CLI
run: echo "test" | myst-docutils-html

Expand Down

0 comments on commit 30c44d5

Please sign in to comment.