Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anze3db/flakytest-python-example
An example project showing how to use flakytest.dev
https://github.com/anze3db/flakytest-python-example
Last synced: 7 days ago
JSON representation
An example project showing how to use flakytest.dev
- Host: GitHub
- URL: https://github.com/anze3db/flakytest-python-example
- Owner: anze3db
- Created: 2023-11-21T07:33:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-21T07:46:10.000Z (about 1 year ago)
- Last Synced: 2024-11-01T04:42:38.846Z (about 2 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example project for flakytest.dev
This is an example project for the [flakytest.dev Get Started guide](https://flakytest.dev/get-started).
## Set up
1. Clone this repository
2. Create a virtual environment and activate it
```bash
python -m venv .venv
source .venv/bin/activate
```
3. Install the dependencies
```bash
pip install -r requirements.txt
```
4. Run the tests
```bash
pytest
```