Skip to content

Commit

Permalink
Update PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
quiqueporta committed Jun 11, 2020
1 parent c2bea98 commit 88eae72
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,19 @@
A Django test runner for [mamba](https://github.com/nestorsalceda/mamba).


## How to install

```
pip install mamba-django
```


## How to use

Go to your Django test settings and add this line.

```
TEST_RUNNER = 'myapp.mamba_runner.MambaRunner'
TEST_RUNNER = 'mamba_django.MambaRunner'
```

## How to execute
Expand All @@ -36,7 +43,7 @@ from expects import (
expect
)

from myapp.mamba_runner import (
from mamba_django import (
start_django_transactions,
rollback_django_transactions
)
Expand Down Expand Up @@ -74,7 +81,7 @@ from expects import (
expect
)

from myapp.mamba_runner import (
from mamba_django import (
load_fixtures,
start_django_transactions,
rollback_django_transactions
Expand Down
2 changes: 1 addition & 1 deletion mamba_django/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
start_django_transactions
)

__version__ = '0.4.0'
__version__ = '0.5.0'
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
author_email='[email protected]',
description='A Django test runner for mamba (the definitive test runner for Python).',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/quiqueporta/mamba-django',
download_url='https://github.com/quiqueporta/mamba-django/releases',
keywords=['python', 'bdd', 'testing', 'tdd', 'django'],
Expand Down

0 comments on commit 88eae72

Please sign in to comment.