Add tox
[pti/o2.git] / README.md
index eb6900a..e4c75d9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,23 +5,11 @@
 docker-compose build\r
 ```\r
 \r
-\r
-## Creating a local virtualenv (optional)\r
-\r
-```sh\r
-python3.8 -m venv .venv && source .venv/bin/activate\r
-pip install -r requirements.txt\r
-pip install -e src/\r
-```\r
-\r
 ## Running the tests\r
 \r
 ```sh\r
 docker-compose up -d\r
 docker-compose run --rm --no-deps --entrypoint=pytest api /tests/unit /tests/integration\r
-pytest tests/unit\r
-pytest tests/integration\r
-pytest tests/e2e\r
 ```\r
 \r
 ## Tear down containers\r
@@ -29,3 +17,16 @@ pytest tests/e2e
 ```sh\r
 docker-compose down --remove-orphans\r
 ```\r
+\r
+## Test with local virtualenv\r
+\r
+```sh\r
+python3.8 -m venv .venv && source .venv/bin/activate\r
+pip install -r requirements.txt -c constraints.txt\r
+pip install -r requirements-test.txt\r
+pip install -e o2ims\r
+# pip install -e o2dms -e o2common\r
+pytest tests/unit\r
+pytest tests/integration\r
+pytest tests/e2e\r
+```\r