Metadata-Version: 2.1
Name: pytest-launchable
Version: 0.5.0
Summary: Launchable Pytest Plugin
Home-page: https://launchableinc.com/
Author: Launchable, Inc.
Author-email: info@launchableinc.com
License: Apache Software License v2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Pytest
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Development
We recommend Pipenv
```shell
pip install pipenv
pipenv install --dev
```

## Load development environment
```shell
pipenv shell
```

## Run tests
```shell
pipenv run test
```

## Run lint and format
```shell
# lint
pipenv run lint

# format
pipenv run format
```
