From 7e6011541fd02fb70f0c3c97eb58099ff2ff65f1 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 23 Feb 2016 20:39:41 -0300 Subject: [PATCH] Fix flakes --- testing/acceptance_test.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py index 036d187..f5ad367 100644 --- a/testing/acceptance_test.py +++ b/testing/acceptance_test.py @@ -621,6 +621,7 @@ class TestNodeFailure: "*1 failed*2 passed*", ]) + def test_worker_id_fixture(testdir): f = testdir.makepyfile(""" import pytest @@ -630,8 +631,9 @@ def test_worker_id_fixture(testdir): f.write(worker_id) """) result = testdir.runpytest(f, "-n2") + result.stdout.fnmatch_lines('* 2 passed in *') worker_ids = [] - for run_num in [1,2]: - worker_id_file_path = testdir.tmpdir.join("worker_id%s" % run_num).strpath - worker_ids.append(open(worker_id_file_path, "r").read()) + for run_num in [1, 2]: + worker_id_file_path = testdir.tmpdir.join("worker_id%s" % run_num) + worker_ids.append(open(str(worker_id_file_path), "r").read()) assert "gw0" in worker_ids and "gw1" in worker_ids