Skip to content

Commit

Permalink
Try to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Sep 30, 2023
1 parent 2e32aeb commit 7fe4228
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
Binary file added .coverage
Binary file not shown.
6 changes: 6 additions & 0 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
comment: false
codecov:
branch: main
require_ci_to_pass: false
notify:
wait_for_ci: false
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ sphinx_js.egg-info/
.vscode
.DS_Store
venv
.venv
coverage.xml
test-results.xml
8 changes: 7 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ def tests(session: Session) -> None:
session.run(
"npm", "i", "--no-save", "[email protected]", "[email protected]", external=True
)
session.run("pytest", "--junitxml=test-results.xml", "--cov=sphinx_js")
session.run(
"pytest",
"--junitxml=test-results.xml",
"--cov=sphinx_js",
"--cov-report",
"xml",
)


@nox.session(python=["3.11"])
Expand Down

0 comments on commit 7fe4228

Please sign in to comment.