From 8de68278c3f2268827a06c5bd1fe01dbc218d3b2 Mon Sep 17 00:00:00 2001 From: "Eugeniy E. Mikhailov" Date: Tue, 18 Jun 2024 23:56:34 -0400 Subject: added info about how to run tests --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 2840e60..6caaeac 100644 --- a/README.md +++ b/README.md @@ -12,3 +12,12 @@ To build a python wheel package and put it in `./dist/` directory, run flit build ~~~~~ +## Test instructions + +~~~~~ +export PYTHONPATH=. +python -m pytest +~~~~~ + +Note that we cannot just run `pytest` since I see no way to set the module search path. + -- cgit v1.2.3 From 4dbc2d97a0141935ec0764b1cf46e3379e8b66dc Mon Sep 17 00:00:00 2001 From: "Eugeniy E. Mikhailov" Date: Wed, 19 Jun 2024 00:02:23 -0400 Subject: added home page url --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b8a3214..915b634 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,3 +23,6 @@ requires = [ "pyserial >= 3.4", ] +[project.urls] +Home = "http://qo.physics.wm.edu/cgit/qolab.git/about/" + -- cgit v1.2.3