Skip to content

Commit 2840dec

Browse files
authored
build: add pyproject.toml with pytest config
1 parent f524dce commit 2840dec

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[project]
2+
name = "execution-boundary-lab"
3+
version = "0.1.0"
4+
description = "Demonstrates how information pre-positioning causes cascading execution failures"
5+
readme = "README.md"
6+
license = {text = "Apache-2.0"}
7+
requires-python = ">=3.9"
8+
9+
[project.optional-dependencies]
10+
test = ["pytest>=7.0"]
11+
12+
[tool.pytest.ini_options]
13+
testpaths = ["tests"]
14+
pythonpath = ["."]
15+
addopts = "-v --tb=short"

0 commit comments

Comments
 (0)