-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 769 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-systems]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cli-scrabble"
version = "0.0.1"
description = ""
readme = "README.md"
authors = ["Tim Pogue <t.pogue.python@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.6.1"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
black = "*"
pre-commit = "^2.15.0"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=scrabble --cov-report=term-missing"
required_plugins = ['pytest-cov>=2.12.1']
log_file = 'logs/pytest-logs.txt'
log_file_date_format = '%Y-%m-%d %H:%M:%S'
log_file_format = '%(asctime)s %(levelname)s %(message)s'
log_file_level = 'DEBUG'
testpaths = ['tests']
python_files = ['test_*.py']
python_functions = ['test_*']
xfail_strict = 'True'