Skip to content

Commit

Permalink
chore: Update the poetry dependencies to avoid using xdist as it may …
Browse files Browse the repository at this point in the history
…not work on Windows.
  • Loading branch information
gkapfham committed Aug 22, 2024
1 parent 90b73be commit d95ceaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 41 deletions.
36 changes: 1 addition & 35 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ openai = "^1.41.0"
taskipy = "^1.13.0"
mypy = "^1.11.1"
pytest-randomly = "^3.15.0"
pytest-xdist = "^3.6.1"
symbex = "^1.4"
pytest-clarity = "^1.0.1"
hypothesis = "^6.111.1"
Expand Down Expand Up @@ -85,14 +84,11 @@ mypy = { cmd = "{mypy-command}", help = "Run the mypy type checker for potential
symbex = "task symbex-typed && task symbex-documented"
symbex-typed = { cmd = "{symbex-typed-command}", help = "Run symbex for fully typed functions", use_vars = true }
symbex-documented = { cmd = "{symbex-documented-command}", help = "Run symbex for documentation", use_vars = true }
test = { cmd = "pytest -x -s -vv -n auto", help = "Run the pytest test suite using order randomization and test distribution" }
test-not-fuzz-not-xdist = { cmd = "pytest -x -s -vv -p no:xdist -m 'not fuzz'", help = "Run the pytest test suite using order randomization but without either test distribution or the fuzz tests" }
test-not-fuzz = { cmd = "pytest -x -s -vv -n auto -m 'not fuzz'", help = "Run the pytest test suite using order randomization and test distribution" }
test = { cmd = "pytest -x -s -vv", help = "Run the pytest test suite using order randomization and test distribution" }
test-not-fuzz = { cmd = "pytest -x -s -vv -m 'not fuzz'", help = "Run the pytest test suite using order randomization and test distribution" }
test-not-randomly = { cmd = "pytest -x -s -vv -p no:randomly", help = "Run the pytest test suite without order randomization" }
test-not-xdist = { cmd = "pytest -x -s -vv -p no:xdist", help = "Run the pytest test suite without order randomization" }
test-silent = { cmd = "pytest -x --show-capture=no -n auto", help = "Run the pytest test suite without showing output" }
test-silent-not-randomly = { cmd = "pytest -x --show-capture=no -p no:randomly", help = "Run the pytest test suite without showing output and order randomization" }
test-silent-not-xdist = { cmd = "pytest -x --show-capture=no -p no:xdist", help = "Run the pytest test suite without showing output and test distribution" }

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit d95ceaa

Please sign in to comment.