File tree Expand file tree Collapse file tree 13 files changed +29
-2
lines changed
pytest-verbose-parametrize Expand file tree Collapse file tree 13 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ COPY_FILES = VERSION CHANGES.md common_setup.py MANIFEST.in LICENSE
16
16
UPLOAD_OPTS =
17
17
18
18
# removed from PHONY: circleci_sip circleci_pyqt
19
- .PHONY : extras copyfiles wheels sdists install develop test upload clean
19
+ .PHONY : extras copyfiles wheels eggs sdists install develop test upload clean
20
20
21
21
extras :
22
22
pip install $(EXTRA_DEPS )
@@ -28,6 +28,9 @@ wheels: copyfiles
28
28
pip install -U wheel
29
29
./foreach.sh --changed ' python setup.py bdist_wheel'
30
30
31
+ eggs : copyfiles
32
+ ./foreach.sh --changed ' python setup.py bdist_egg'
33
+
31
34
sdists : copyfiles
32
35
./foreach.sh --changed ' python setup.py sdist'
33
36
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ Install using your favourite package manager:
13
13
14
14
``` bash
15
15
pip install pytest-devpi-server
16
+ # or..
17
+ easy_install pytest-devpi-server
16
18
```
17
19
18
20
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ Install using your favourite package manager:
9
9
10
10
``` bash
11
11
pip install pytest-fixture-config
12
+ # or..
13
+ easy_install pytest-fixture-config
12
14
```
13
15
14
16
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ Creates an empty Git repository for testing that cleans up after itself on teard
7
7
Install using your favourite package installer:
8
8
``` bash
9
9
pip install pytest-git
10
+ # or
11
+ easy_install pytest-git
10
12
```
11
13
12
14
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Install using your favourite package manager:
8
8
9
9
``` bash
10
10
pip install pytest-listener
11
+ # or..
12
+ easy_install pytest-listener
11
13
```
12
14
13
15
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ generated using [gprof2dot](http://code.google.com/p/jrfonseca/wiki/Gprof2Dot) a
13
13
Install using your favourite package installer:
14
14
``` bash
15
15
pip install pytest-profiling
16
+ # or
17
+ easy_install pytest-profiling
16
18
```
17
19
18
20
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Install using your favourite package manager:
10
10
11
11
``` bash
12
12
pip install pytest-pyramid-server
13
+ # or..
14
+ easy_install pytest-pyramid-server
13
15
```
14
16
15
17
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ Set up a Q Application for QT with an X-Window Virtual Framebuffer (Xvfb).
7
7
Install using your favourite package installer:
8
8
``` bash
9
9
pip install pytest-qt-app
10
+ # or
11
+ easy_install pytest-qt-app
10
12
```
11
13
12
14
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ Install using your favourite package manager::
10
10
11
11
``` bash
12
12
pip install pytest-shutil
13
- ```
13
+ # or..
14
+ easy_install pytest-shutil
15
+ ```
14
16
15
17
## Workspace Fixture
16
18
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ Creates an empty SVN repository for testing that cleans up after itself on teard
7
7
Install using your favourite package installer:
8
8
``` bash
9
9
pip install pytest-svn
10
+ # or
11
+ easy_install pytest-svn
10
12
```
11
13
12
14
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ more descriptive than the default (which just outputs id numbers).
8
8
Install with your favourite package manager, and this plugin will automatically be enabled:
9
9
``` bash
10
10
pip install pytest-verbose-parametrize
11
+ # or ..
12
+ easy_install pytest-verbose-parametrize
11
13
```
12
14
## Usage
13
15
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ The fixture has utility methods to install packages and list what's installed.
8
8
Install using your favourite package installer:
9
9
``` bash
10
10
pip install pytest-virtualenv
11
+ # or
12
+ easy_install pytest-virtualenv
11
13
```
12
14
13
15
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ on test failures.
9
9
Install using your favourite package installer:
10
10
``` bash
11
11
pip install pytest-webdriver
12
+ # or
13
+ easy_install pytest-webdriver
12
14
```
13
15
14
16
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
You can’t perform that action at this time.
0 commit comments