Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Semantic Router
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
aurelio-labs
Semantic Router
Commits
5eebdf5a
Commit
5eebdf5a
authored
2 months ago
by
James Briggs
Browse files
Options
Downloads
Patches
Plain Diff
feat: modify pytest to exit on first fail
parent
a4c593fd
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+4
-4
4 additions, 4 deletions
Makefile
with
4 additions
and
4 deletions
Makefile
+
4
−
4
View file @
5eebdf5a
...
@@ -12,11 +12,11 @@ lint lint_diff:
...
@@ -12,11 +12,11 @@ lint lint_diff:
poetry run mypy
$(
PYTHON_FILES
)
poetry run mypy
$(
PYTHON_FILES
)
test
:
test
:
poetry run pytest
-vv
--cov
=
semantic_router
--cov-report
=
term-missing
--cov-report
=
xml
poetry run pytest
-vv
--cov
=
semantic_router
--cov-report
=
term-missing
--cov-report
=
xml
--exitfirst
--maxfail
=
1
test_functional
:
test_functional
:
poetry run pytest
-vv
--exitfirst
--maxfail
=
1
--max-parallel
=
20
tests/functional
poetry run pytest
-vv
--exitfirst
--maxfail
=
1 tests/functional
test_unit
:
test_unit
:
poetry run pytest
-vv
--exitfirst
--maxfail
=
1
--max-parallel
=
20
tests/unit
poetry run pytest
-vv
--exitfirst
--maxfail
=
1 tests/unit
test_integration
:
test_integration
:
poetry run pytest
-vv
--exitfirst
--maxfail
=
1
--max-parallel
=
20
tests/integration
poetry run pytest
-vv
--exitfirst
--maxfail
=
1 tests/integration
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment