Skip to content

Commit

Permalink
fix: benchmark workflow execution
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Nov 3, 2023
1 parent 036862c commit a99a258
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,13 @@ jobs:
run: ./realworld/api/run-api-tests.sh
env:
APIURL: http://localhost:8000

all-ci-checks:
needs:
- static-analysis
- compatibility-tests
- tests
- integrated-realworld-test
runs-on: ubuntu-latest
steps:
- run: echo "All CI checks passed."
4 changes: 3 additions & 1 deletion tests/integration/benchmarks/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
from datetime import datetime
from decimal import Decimal
from random import choice
from typing import Iterator, Literal, Optional, get_args
from typing import Iterator, Optional

from typing_extensions import Literal, get_args

from odmantic import Field, Model

Expand Down

0 comments on commit a99a258

Please sign in to comment.