Skip to content

Commit a143e09

Browse files
committed
By default, run tests without pinning down all dependencies
This allows running the tests under any desired (e.g. latest) dependency versions. If we want to also test a specific pinned down set of dependencies, we can do that from our CI without forcing folks to do that locally.
1 parent 87656b5 commit a143e09

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,7 @@ env_list = ["py3", "mypy", "flake8", "docs"]
115115
[tool.tox.env.py3]
116116
description = "Run the unit tests"
117117
allowlist_externals = ["rm", "lit"]
118-
# TODO: Make it possible to run the tests without pinning down all dependencies
119-
deps = [
120-
"-r requirements.txt",
121-
".[dev]",
122-
]
118+
deps = [".[dev]"]
123119
commands = [
124120
["rm", "-rf", "test_run_tmp"],
125121
["lit", "-sv", "tests"],

0 commit comments

Comments
 (0)