mirror of
https://github.com/Hopiu/llm.git
synced 2026-04-03 05:00:26 +00:00
More verbosity in tests in CI, refs #901
This commit is contained in:
parent
7b46c17976
commit
0950ff360f
2 changed files with 2 additions and 2 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -25,7 +25,7 @@ jobs:
|
|||
pip install -e '.[test]'
|
||||
- name: Run tests
|
||||
run: |
|
||||
pytest
|
||||
python -m pytest -vv
|
||||
- name: Check if cog needs to be run
|
||||
if: matrix.os != 'windows-latest'
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -368,5 +368,5 @@ def test_execute_prompt_from_template_path():
|
|||
["-t", str(path), "-m", "echo"],
|
||||
catch_exceptions=False,
|
||||
)
|
||||
assert result.exit_code == 0
|
||||
assert result.exit_code == 0, result.output
|
||||
assert result.output.strip() == "system:\nsystem\n\nprompt:\nprompt"
|
||||
|
|
|
|||
Loading…
Reference in a new issue