https://github.com/mesmacosta/coverage_button_sample
https://github.com/mesmacosta/coverage_button_sample
coverage python touchbar
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mesmacosta/coverage_button_sample
- Owner: mesmacosta
- Created: 2019-09-11T01:44:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-11T01:46:34.000Z (over 5 years ago)
- Last Synced: 2025-01-10T19:41:48.317Z (4 months ago)
- Topics: coverage, python, touchbar
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sampleCoverageApplication
Sample code showing how to run the coverage tooling.
## 1. Environment setup
##### 1.1. Create and activate a *virtualenv*
```bash
pip install --upgrade virtualenv
python3 -m virtualenv --python python3 env
source ./env/bin/activate
```##### 1.2. Install the dependencies
```bash
pip install --editable ./sample_coverage_app
```