Fix posargs usage for tox jobs

This commit removes the posargs from the coverage job's testr line
which will not work with the coverage periodic jenkins. It also adds
posargs to the 'all' job which will enable running a single test using
tox.

Change-Id: I650531377be7f58d18f79addefc32e62a4c268ea
diff --git a/tox.ini b/tox.ini
index 53f85c1..dc8980d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,7 +11,7 @@
 sitepackages = True
 setenv = VIRTUAL_ENV={envdir}
 commands =
-  python setup.py testr --slowest
+  python setup.py testr --slowest --testr-args='{posargs}'
 
 [testenv:full]
 sitepackages = True
@@ -38,7 +38,7 @@
 setenv = VIRTUAL_ENV={envdir}
 commands =
    python -m tools/tempest_coverage -c start --combine
-   sh tools/pretty_tox_serial.sh '(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario|thirdparty|cli)) {posargs}'
+   sh tools/pretty_tox_serial.sh '(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario|thirdparty|cli))'
    python -m tools/tempest_coverage -c report --html {posargs}
 
 [testenv:stress]