summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2022-11-05 20:53:35 +0000
committerJelmer Vernooij <jelmer@jelmer.uk>2022-11-05 20:53:35 +0000
commita611e023ae9a0c269d556909306c77aa2b6b192a (patch)
treebd3ece206841726f9273442a779d652c5d3f9a44 /python
parenta44fa88ac8b06828728fe9e772a5b140e73d93f7 (diff)
downloadsubunit-git-a611e023ae9a0c269d556909306c77aa2b6b192a.tar.gz
Fix distcheck; include python files again.
Diffstat (limited to 'python')
-rw-r--r--python/subunit/tests/test_subunit_filter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/tests/test_subunit_filter.py b/python/subunit/tests/test_subunit_filter.py
index d14415a..3ae2a08 100644
--- a/python/subunit/tests/test_subunit_filter.py
+++ b/python/subunit/tests/test_subunit_filter.py
@@ -301,7 +301,7 @@ xfail todo
class TestFilterCommand(TestCase):
def run_command(self, args, stream):
- command = ['subunit-filter'] + list(args)
+ command = [sys.executable, '-m', 'subunit.filter_scripts.subunit_filter'] + list(args)
ps = subprocess.Popen(
command, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)