Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 465 Bytes

README.md

File metadata and controls

18 lines (17 loc) · 465 Bytes

vstrader

FastAPI python backend for virtual stock trading

Setup

At first, you need to install dependencies specified in requirements.txt:

pip install -r requirements.txt 

Run tests

To run all tests just call from the root:

PYTHONPATH=. pytest

Also, it's possible to run a specific test group:

PYTHONPATH=. pytest tests/unit-tests         # to run unit tests
PYTHONPATH=. pytest tests/integration-tests  # to run integration tests