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

Some more small fixes #48

Merged
merged 1 commit into from
May 28, 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: 2 additions & 0 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
fail_ci_if_error: true
verbose: true
attempt_limit: 5
attempt_delay: 30000

Expand All @@ -82,5 +83,6 @@ jobs:
# token: ${{ secrets.CODECOV_TOKEN }}
# name: codecov-umbrella
# fail_ci_if_error: true
# verbose: true
# attempt_limit: 5
# attempt_delay: 30000
2 changes: 2 additions & 0 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
fail_ci_if_error: true
verbose: true
attempt_limit: 5
attempt_delay: 30000
- name: Setup yarn
Expand All @@ -73,5 +74,6 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
fail_ci_if_error: true
verbose: true
attempt_limit: 5
attempt_delay: 30000
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,4 @@ next-env.d.ts
/metrics/
/logs/
/.ruff_cache/
/.swc/
2 changes: 1 addition & 1 deletion florist/api/routes/server/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


@router.post(
path="/",
path="",
response_description="Create a new job",
status_code=status.HTTP_201_CREATED,
response_model=Job,
Expand Down
Loading