File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 60
60
if : steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
61
61
run : poetry install --no-interaction --no-root
62
62
- name : Test Code
63
- run : poetry run pytest
63
+ run : poetry run pytest tests/
64
64
- name : Lint Code
65
65
run : poetry run ruff .
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ docker-create-db-migration: ## Create new alembic database migration aka databa
27
27
28
28
.PHONY : docker-test
29
29
docker-test : # # Run project tests
30
- docker-compose -f docker-compose.yml -f docker-compose.test.yml run --rm app pytest
30
+ docker-compose -f docker-compose.yml -f docker-compose.test.yml run --rm app pytest tests
31
31
32
32
.PHONY : docker-test-snapshot
33
33
docker-test-snapshot : # # Run project tests with inline snapshot
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ class Stuff(HttpUser):
5
5
wait_time = between (1 , 3 )
6
6
7
7
@task
8
- def test_find (self ):
8
+ def find_stuff (self ):
9
9
self .client .get ("/v1/stuff/string" )
10
10
11
11
@task
12
- def test_find_pool (self ):
12
+ def find_stuff_with_pool (self ):
13
13
self .client .get ("/v1/stuff/pool/string" )
You can’t perform that action at this time.
0 commit comments