diff options
| author | Claude Sonnet 4.6 | 2026-05-27 00:00:00 +0000 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-05-27 14:58:23 -0500 |
| commit | 64f779a275cde734ba9bbe7f808c34d3a9217f32 (patch) | |
| tree | 9bff5269e7c2849e01622adc01622617d18ad3ed | |
| parent | 1655d8e45bbf8b0524af6529c142ada98ddace54 (diff) | |
| download | gn-integration-tests-64f779a275cde734ba9bbe7f808c34d3a9217f32.tar.gz | |
README: document that env vars work for any deployment
The three BASE_URL variables are not limited to CD and production — they work for any live deployment. Add an explicit note and a concrete example using a personal/feature instance so this is clear to new contributors.
| -rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md index 69ba217..e932a3d 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,19 @@ GN_AUTH_BASE_URL=https://auth.genenetwork.org \ pytest -m "smoke" ``` +The three variables work for **any deployment** — CD, production, or a +personal/feature instance. To run against an arbitrary stack, just point +the variables at it: + +```sh +GN2_BASE_URL=https://gn2-fred.genenetwork.org \ +GN3_BASE_URL=https://gn2-fred.genenetwork.org/api3 \ +GN_AUTH_BASE_URL=https://gn2-fred-auth.genenetwork.org \ +pytest -m "smoke" +``` + +No test-code changes are needed — all URL configuration lives in `conftest.py`. + ## Test marks | Mark | Description | |
