Skip to content

Commit cd5545d

Browse files
author
basantnema31
committed
feat: Add pytest.ini and pyproject.toml (Fixes steam-bell-92#1020, Fixes steam-bell-92#1023)
1 parent 6f298a1 commit cd5545d

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[tool.poetry]
2+
name = "python-mini-project"
3+
version = "0.1.0"
4+
description = "A collection of python mini projects"
5+
authors = ["Open Source Contributors"]
6+
7+
[tool.poetry.dependencies]
8+
python = ">=3.10"
9+
pygame = "2.6.1"
10+
numpy = "1.26.4"
11+
matplotlib = "3.8.3"
12+
pillow = "12.2.0"
13+
nltk = "3.9.4"
14+
requests = "2.34.2"
15+
16+
[tool.poetry.group.dev.dependencies]
17+
pytest = ">=8.0.0"
18+
19+
[build-system]
20+
requires = ["poetry-core>=1.0.0"]
21+
build-backend = "poetry.core.masonry.api"

pytest.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[pytest]
2+
addopts = -v --tb=short
3+
testpaths = tests
4+
python_files = test_*.py
5+
python_classes = Test*
6+
python_functions = test_*

0 commit comments

Comments
 (0)