You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ pyresttest
31
31
# What Is It?
32
32
- A REST testing and API microbenchmarking tool
33
33
- Tests are defined in basic YAML or JSON config files, no code needed
34
-
- Minimal dependencies (pycurl, pyyaml, future), making it easy to deploy on-server for smoketests/healthchecks
34
+
- Minimal dependencies (pycurl, pyyaml, optionally future), making it easy to deploy on-server for smoketests/healthchecks
35
35
- Supports [generate/extract/validate](advanced_guide.md) mechanisms to create full test scenarios
36
36
- Returns exit codes on failure, to slot into automated configuration management/orchestration tools (also supplies parseable logs)
37
37
- Logic is written and [extensible](extensions.md) in Python
@@ -49,7 +49,7 @@ Apache License, Version 2.0
49
49
* The changelog will also show features/fixes currently merged to the master branch but not released to PyPi yet (pending installation tests across platforms).
50
50
51
51
# Installation
52
-
PyRestTest works on Linux or Mac with Python 2.6, 2.7, or 3.3+.
52
+
PyRestTest works on Linux or Mac with Python 2.6, 2.7, or 3.3+ (with module 'future' installed)
53
53
54
54
**First we need to install package python-pycurl:**
@@ -59,7 +59,7 @@ PyRestTest works on Linux or Mac with Python 2.6, 2.7, or 3.3+.
59
59
*This is needed because the pycurl dependency may fail to install by pip. In *very rare* cases you may need to intall python-pyyaml if pip cannot install it correctly.*
60
60
61
61
**It is easy to install the latest release by pip:**
62
-
(sudo) `pip install pyresttest`
62
+
(sudo) `pip install pyresttest` (also install 'future' if on Python 3)
63
63
64
64
**If pip isn't installed, we'll want to install it first:**
65
65
If that is not installed, we'll need to install it first:
0 commit comments