Skip to content
Open
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 backend/data_tools/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pytest-cov = "==7.0.0"
pytest-mock = "==3.15.1"
ipython = "==9.10.0"
pytest-docker = {extras = ["docker-compose-v2"], version = "==3.2.5"}
black = {extras = ["d"], version = "==25.12.0"}
black = {extras = ["d"], version = "==26.1.0"}
isort = "==7.0.0"

[requires]
Expand Down
64 changes: 32 additions & 32 deletions backend/data_tools/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/ops_api/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sqlalchemy-continuum = "==1.6.0"
deepdiff = "*"

[dev-packages]
black = {extras = ["d"], version = "==25.12.0"}
black = {extras = ["d"], version = "==26.1.0"}
flake8 = "==7.3.0"
isort = "==7.0.0"
nox = "==2026.2.9"
Expand Down
64 changes: 32 additions & 32 deletions backend/ops_api/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions backend/ops_api/tests/auth/test_refresh.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,9 @@ def db_with_active_user_session(loaded_db, test_user):
loaded_db.commit()


@pytest.mark.skip(
reason="""
@pytest.mark.skip(reason="""
This test should only be run manually as it is dependent on timing and the JWT token expiration.
"""
)
""")
def test_refresh_token(app, client, loaded_db, mocker):
app.config["JWT_ACCESS_TOKEN_EXPIRES"] = timedelta(seconds=30)
app.config["JWT_REFRESH_TOKEN_EXPIRES"] = timedelta(minutes=10)
Expand Down