We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54000dc commit 51ca1a7Copy full SHA for 51ca1a7
README.md
@@ -45,7 +45,16 @@ export $(grep "API_TOKEN" "dv/bootstrap.exposed.env")
45
export API_TOKEN_SUPERUSER=$API_TOKEN
46
```
47
48
-**3. Run the test(s) with pytest**
+**3. Install test dependencies
49
+
50
+```
51
+python3 -m venv venv # or conda create -n pydataverse
52
+source venv/bin/activate
53
+pip install -e .
54
+python3 -m pip install pytest pytest-cov pytest-asyncio tox selenium
55
56
57
+**4. Run the test(s) with pytest**
58
59
```bash
60
python -m pytest -v
0 commit comments