Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 612 Bytes

DEV_NOTES.md

File metadata and controls

34 lines (24 loc) · 612 Bytes

Developer's Notes

Cloning and Running Tests

git clone https://github.com/questdb/py-questdb-query.git
cd py-questdb-query
git submodule update --init
poetry install
./test

The tests will automatically download and start a QuestDB instance, but you also need to have a Java 11 runtime installed.

Updating the dependencies

Tweak the pyproject.toml file (if needed) and then run:

poetry update

Running a single test

poetry run python -m unittest tests.tests.TestModule.test_basic_aut

Cutting a release

poetry export --output requirements.txt