Skip to content

Commit 138b39a

Browse files
- 15 tests failing.
1 parent 41be075 commit 138b39a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/developer_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ go test -timeout 1200s --tags "sqlite_stackql" ./...
7777
**Note**: this requires the local build (above) to have been completed successfully, which builds a binary in `./build/`.
7878

7979
```bash
80-
robot -d test/robot/functional test/robot/functional
80+
env PYTHONPATH="$PYTHONPATH:$(pwd)/test/python" robot -d test/robot/functional test/robot/functional
8181
```
8282

8383
Or better yet, if you have docker desktop and the `postgres` image cited in the docker compose files:

test/robot/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ These may consume entire testing modules, or more nuanced [tag-based](https://ro
2727
From the repository root:
2828

2929
```sh
30-
robot -d test/robot/functional test/robot/functional
30+
env PYTHONPATH="$PYTHONPATH:$(pwd)/test/python" robot -d test/robot/functional test/robot/functional
3131
```
3232

3333
### Running actual integration tests
3434

3535
From the repository root:
3636

3737
```sh
38-
robot -d test/robot/integration \
38+
env PYTHONPATH="$PYTHONPATH:$(pwd)/test/python" robot -d test/robot/integration \
3939
-v OKTA_CREDENTIALS:"$(cat /path/to/okta/credentials)" \
4040
-v GCP_CREDENTIALS:"$(cat /path/to/gcp/credentials)" \
4141
-v AWS_CREDENTIALS:"$(cat /path/to/aws/credentials)" \
@@ -46,7 +46,7 @@ robot -d test/robot/integration \
4646
For example:
4747

4848
```sh
49-
robot -d test/robot/integration \
49+
env PYTHONPATH="$PYTHONPATH:$(pwd)/test/python" robot -d test/robot/integration \
5050
-v OKTA_CREDENTIALS:"$(cat /path/to/okta/credentials)" \
5151
-v GCP_CREDENTIALS:"$(cat ${HOME}/stack/stackql-devel/cicd/keys/integration/stackql-dev-01-07d91f4abacf.json)" \
5252
-v AWS_CREDENTIALS:"$(cat ${HOME}/stack/stackql-devel/cicd/keys/integration/aws-auth-val.txt)" \

0 commit comments

Comments
 (0)