blob: 0a1d58d6a558b56f96ead70439d9aba04abeb5de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[project]
name = "gn-integration-tests"
version = "0.1.0"
requires-python = ">=3.9"
dependencies = [
"requests",
"pytest",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"smoke: Quick sanity checks requiring no authentication",
"gn2: Tests exercising genenetwork2 directly",
"gn3: Tests exercising the genenetwork3 REST API",
"gn_auth: Tests exercising the gn-auth service",
"auth_flow: Tests requiring valid user credentials (set GN_TEST_EMAIL and GN_TEST_PASSWORD)",
"transient: Tests known to fail intermittently due to timing or load; candidates for retry logic",
"case_attr_access: Tests for case-attribute endpoint access-control levels",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.backends.legacy:build"
|