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

chore: add --ignore=tests/integration flag from pytest command in pyproject.toml and remove unit #2468

Merged
merged 23 commits into from
Jul 5, 2024
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
1fd508f
chore: add `--ignore=tests/integration` flag from pytest command in p…
ogabrielluiz Jul 1, 2024
2bd1eab
Merge branch 'main' into fix_cov
github-actions[bot] Jul 1, 2024
618b375
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
c9b2deb
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
03f7f71
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
d05dec0
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
42f31d7
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
296ce09
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
f468276
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
0a995e6
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
be4f2c6
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
3e69913
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
e8418d1
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
b8a32d7
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
f498364
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
6c20e4d
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
f7b72ce
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
8d7b280
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
795d11d
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
81417b5
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
bffc506
Merge branch 'main' into fix_cov
github-actions[bot] Jul 2, 2024
795fa4b
Merge branch 'main' into fix_cov
ogabrielluiz Jul 4, 2024
9b78648
Merge branch 'main' into fix_cov
ogabrielluiz Jul 5, 2024
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
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,9 @@ markers = ["async_test", "api_key_required"]

[tool.coverage.run]
command_line = """
-m pytest
-m pytest --ignore=tests/integration
--cov --cov-report=term --cov-report=html
--instafail -ra -n auto -m "not api_key_required"
tests/unit
"""
source = ["src/backend/base/langflow/"]
omit = ["*/alembic/*", "tests/*", "*/__init__.py"]
Expand Down
Loading