summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2020-12-10 21:14:06 -0500
committerDrew Risinger <drewrisinger@users.noreply.github.com>2020-12-10 21:14:42 -0500
commit6bb2eae2ff86d941c589e4234cf52c897562cbd8 (patch)
tree629ab56793d51306d161b01f59428dcba46467e4 /pkgs/applications/misc
parent25c9946f95a0be44a5794da66da1e7f2ca116d42 (diff)
treewide: remove dead pytestpep8 references
pytestpep8 was removed in 25c9946f95a0be44a5794da66da1e7f2ca116d42. This removes pytestpep8 in the rest of the tree, where it was hardly used.
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/ulauncher/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/misc/ulauncher/default.nix b/pkgs/applications/misc/ulauncher/default.nix
index 81e273dd39d8..f1439dc7d161 100644
--- a/pkgs/applications/misc/ulauncher/default.nix
+++ b/pkgs/applications/misc/ulauncher/default.nix
@@ -66,7 +66,6 @@ python3Packages.buildPythonApplication rec {
mock
pytest
pytest-mock
- pytestpep8
xvfb_run
];
@@ -95,7 +94,7 @@ python3Packages.buildPythonApplication rec {
# skip tests in invocation that handle paths that
# aren't nix friendly (i think)
xvfb-run -s '-screen 0 1024x768x16' \
- pytest -k 'not TestPath and not test_handle_key_press_event' --pep8 tests
+ pytest -k 'not TestPath and not test_handle_key_press_event' tests
runHook postCheck
'';