Skip to content

Commit

Permalink
update minimal integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
User committed May 16, 2024
1 parent dd8260f commit 77624aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: poetry install --no-interaction --no-root

- name: Install project
run: poetry install --no-interaction --extras "crewai llama-index"
run: poetry install --no-interaction --all-extras

- name: Run integration tests
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ jobs:
env:
OPENAI_API_KEY: fake_key_1337
TIKTOKEN_CACHE_DIR: tests/itest_cache/tiktoken_cache
run: poetry run python tests/run_integration_tests.py --minimal
run: poetry run python tests/run_integration_tests.py --minimal_only
4 changes: 2 additions & 2 deletions tests/run_integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def get_args_parser():
help="Update reference data together with the cache",
)
parser.add_argument(
"--minimal",
"--minimal_only",
default=False,
action="store_true",
help="Run minimal tests"
Expand Down Expand Up @@ -250,7 +250,7 @@ def main():
golden_dir=args.golden_dir,
update_golden=args.update_golden,
test_name=args.test_name,
minimal_only=args.minimal
minimal_only=args.minimal_only
)


Expand Down

0 comments on commit 77624aa

Please sign in to comment.