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 8eb1051 commit 5498d52Copy full SHA for 5498d52
README.md
@@ -9,16 +9,21 @@ A Python library to retrieve data from Pyth account structures off the Solana bl
9
Developer Setup
10
---------------
11
12
+Using python 3.7 or newer, create, and activate a virtual environment:
13
+
14
+ python3 -m venv ve
15
+ . ve/bin/activate
16
17
To install this library in editable mode with test dependencies:
18
19
pip install -e '.[testing]'
20
21
To run the unit tests:
22
- pytest --cov=pythclient
23
+ pytest
24
25
If html based test coverage is more your jam:
26
- pytest --cov-report=html --cov=pythclient
27
+ pytest --cov-report=html
28
29
The coverage webpages will be in the `htmlcov` directory.
0 commit comments