Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
with: { python-version: '3.12' }
if: runner.os == 'Windows'
- name: Install python deps
run: python -m pip install psycopg2-binary xmltodict
run: python -m pip install -r smoketests/requirements.txt
- name: Run smoketests
# Note: clear_database and replication only work in private
run: python -m smoketests ${{ matrix.smoketest_args }} -x clear_database replication teams
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -226,3 +226,6 @@ new.json

# Symlinked output from `nix build`
result

# Python venv directories
venv/
11 changes: 11 additions & 0 deletions smoketests/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
To use the smoketests, you first need to install the dependencies:

```
python -m venv smoketests/venv
smoketests/venv/bin/pip install -r smoketests/requirements.txt
```

Then, run the smoketests like so:
```
smoketests/venv/bin/python -m smoketests <args>
```
3 changes: 3 additions & 0 deletions smoketests/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
psycopg2-binary
toml
xmltodict
Loading