Skip to content

Commit

Permalink
add dummy test for cI
Browse files Browse the repository at this point in the history
  • Loading branch information
Daltz333 committed Apr 5, 2021
1 parent f39ce5a commit dab6b00
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/roots/test-basic/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
extensions = ["sphinxext.delta"]

master_doc = "index"
exclude_patterns = ["_build"]

# removes most of the HTML
html_theme = "basic"
3 changes: 3 additions & 0 deletions tests/roots/test-basic/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test
====

8 changes: 8 additions & 0 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest
from sphinx.application import Sphinx
from sphinx import version_info


@pytest.mark.sphinx("html", testroot="basic")
def test_simple_short(app: Sphinx):
assert(True)

0 comments on commit dab6b00

Please sign in to comment.