diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 6210d1f..e67a5cb 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -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 @@ -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 diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 057eb45..90a8713 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -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 @@ -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 diff --git a/.gitignore b/.gitignore index 74604df..6e15724 100644 --- a/.gitignore +++ b/.gitignore @@ -170,3 +170,4 @@ next-env.d.ts /metrics/ /logs/ /.ruff_cache/ +/.swc/ diff --git a/florist/api/routes/server/job.py b/florist/api/routes/server/job.py index f710320..258a127 100644 --- a/florist/api/routes/server/job.py +++ b/florist/api/routes/server/job.py @@ -11,7 +11,7 @@ @router.post( - path="/", + path="", response_description="Create a new job", status_code=status.HTTP_201_CREATED, response_model=Job,