Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.

Commit 8a98f6a

Browse files
committed
Add a skeleton of the pytest project.
1 parent 8e74635 commit 8a98f6a

File tree

2 files changed

+182
-0
lines changed

2 files changed

+182
-0
lines changed

python/selfie-runner-pytest/poetry.lock

+161
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[tool.poetry]
2+
name = "selfie-runner-pytest"
3+
version = "0.1.0"
4+
description = "A pytest plugin for selfie snapshot testing."
5+
authors = ["Selina Delgado <sdelgado411@gmail.com>","Harvir Sahota <hsahota2312@gmail.com>","Ned Twigg <ned.twigg@diffplug.com>","Edwin Ye <EdwinYeDeveloper@gmail.com>"]
6+
license = "Apache-2.0"
7+
readme = "../README.md"
8+
9+
[tool.poetry.dependencies]
10+
python = "^3.12"
11+
pytest = "^8.0.0"
12+
selfie-lib = { path = "../selfie-lib", develop = true }
13+
14+
[tool.poetry.group.dev.dependencies]
15+
ruff = "^0.3.0"
16+
pyright = "^1.1.350"
17+
pytest = "^8.0.0"
18+
19+
[build-system]
20+
requires = ["poetry-core"]
21+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)