Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): pre-commit autoupdate #378

Merged
merged 2 commits into from
Aug 19, 2024
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
- id: check-github-workflows

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.7
rev: v0.6.1
hooks:
- id: ruff
- id: ruff-format
Expand Down
16 changes: 8 additions & 8 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def fake_date(faker: Faker):
return faker.date_time().strftime("%Y-%m-%d %H:%M:%S")


@pytest.fixture()
@pytest.fixture
def accounts_response(faker: Faker):
"""Return a sample response for the accounts stream."""
return {
Expand Down Expand Up @@ -54,7 +54,7 @@ def accounts_response(faker: Faker):
}


@pytest.fixture()
@pytest.fixture
def connections_response(faker: Faker):
"""Return a sample response for the connections stream."""
return {
Expand Down Expand Up @@ -94,7 +94,7 @@ def connections_response(faker: Faker):
}


@pytest.fixture()
@pytest.fixture
def environments_response(faker: Faker):
"""Return a sample response for the environments stream."""
return {
Expand Down Expand Up @@ -135,7 +135,7 @@ def environments_response(faker: Faker):
}


@pytest.fixture()
@pytest.fixture
def jobs_response(faker: Faker):
"""Return a sample response for the jobs stream."""
return {
Expand Down Expand Up @@ -202,7 +202,7 @@ def jobs_response(faker: Faker):
}


@pytest.fixture()
@pytest.fixture
def projects_response():
"""Return a sample response for the projects stream."""
return {
Expand Down Expand Up @@ -232,7 +232,7 @@ def projects_response():
}


@pytest.fixture()
@pytest.fixture
def repositories_response(faker: Faker):
"""Return a sample response for the repositories stream."""
return {
Expand Down Expand Up @@ -270,7 +270,7 @@ def repositories_response(faker: Faker):
}


@pytest.fixture()
@pytest.fixture
def runs_response(faker: Faker):
"""Return a sample response for the runs stream."""
return {
Expand Down Expand Up @@ -303,7 +303,7 @@ def runs_response(faker: Faker):
}


@pytest.fixture()
@pytest.fixture
def users_response(faker: Faker):
"""Return a sample response for the users stream."""
return {
Expand Down