Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
- uses: isort/isort-action@v1
lint:
name: Lint with ruff
runs-on: ubuntu-latest
Expand Down Expand Up @@ -127,4 +128,3 @@ jobs:
with:
# remove repository key to set the default to pypi (not test.pypi.org)
repository-url: https://test.pypi.org/legacy/

1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
html_js_files = [
"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"
]
os.environ["PLOTLY_RENDERER"] = "notebook" # compatibility with plotly6

# https://myst-nb.readthedocs.io/en/latest/configuration.html
# Execution
Expand Down
3 changes: 2 additions & 1 deletion tests/test_mockup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from python_package import hello_world, saved_world
import pytest

from python_package import hello_world, saved_world


def test_hello_world_3times():
expected = "hello world hello world hello world"
Expand Down