-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
44 lines (35 loc) · 1.3 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "tests"
version = "0.0.2"
description = "OTT test tools"
authors = ["Frank Purcell <fxpurcell@gmail.com>"]
license = "Mozilla 2.x"
readme = "README.md"
packages = [{include = "ott/tests"}]
[tool.poetry.dependencies]
python = "^3.9"
mako = "1.2.3"
requests = "^2.32.0"
mergedeep = "^1.3.4"
PyYAML = "^6.0"
colorama = "^0.4.5"
playwright = {extras = ["all"], version = "^1.58.0"}
"ott.utils" = {git = "https://github.com/OpenTransitTools/utils.git", branch="rtp"}
#"ott.utils" = { path = "../utils/", develop = true }
[tool.poetry.scripts]
otp-all = "ott.tests.otp.test:all"
otp-planner = "ott.tests.otp.test:plan"
otp-smoke = "ott.tests.otp.test:smoke"
otp-perf = "ott.tests.otp.perf:main"
otp-stress = "ott.tests.otp.stress:main"
rtp = "ott.tests.otp.test:rtp"
geo-tiles-stress = "ott.tests.geo.stress:VectorThreads.run_stress_test"
geo-patterns-stress = "ott.tests.geo.stress:PatternThreads.run_stress_test"
pelias-autocomplete-stress = "ott.tests.pelias.stress:AutocompleteThreads.run_stress_test"
pelias-reverse-stress = "ott.tests.pelias.stress:ReverseThreads.run_stress_test"
uptime = "ott.tests.uptime.uptime:main"
headless_example = "ott.tests.uptime.headless:example"
demo-stress = "ott.tests.utils.threads:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"