We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d8508 commit a17bb6aCopy full SHA for a17bb6a
Makefile
@@ -7,7 +7,10 @@ install_dev: .venv
7
.venv/bin/pip install -e ".[test]"
8
9
test: .venv
10
- .venv/bin/pytest -p no:cacheprovider tests/
+ .venv/bin/pytest -v -rsx -n 2 tests/ -k "not logits_match"
11
+
12
+test_all: .venv
13
+ .venv/bin/pytest -v -rsx -n 2 tests/
14
15
table:
16
.venv/bin/python misc/generate_table.py
tests/test_models.py
0 commit comments