Merge pull request #417 from chill117/fastapi-tests

Unit tests for FastAPI branch
This commit is contained in:
Arc 2021-12-05 22:13:10 +00:00 committed by GitHub
commit d21b68a5e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 344 additions and 46 deletions

View file

@ -10,3 +10,17 @@ For developers
==============
Thanks for contributing :)
Tests
=====
This project has unit tests that help prevent regressions. Before you can run the tests, you must install a few dependencies:
```bash
./venv/bin/pip install pytest pytest-asyncio requests trio mock
```
Then to run the tests:
```bash
make test
```