diff --git a/integration/sawtooth_integration/docker/intkey-python-smoke.yaml b/integration/sawtooth_integration/docker/intkey-python-smoke.yaml index eb381f5..287ebed 100644 --- a/integration/sawtooth_integration/docker/intkey-python-smoke.yaml +++ b/integration/sawtooth_integration/docker/intkey-python-smoke.yaml @@ -50,7 +50,7 @@ services: command: "bash -c \"\ sawtooth admin keygen && \ sawtooth admin genesis && \ - validator -v \ + validator -vv \ --public-uri tcp://validator:8800 \ --component-endpoint tcp://eth0:40000 \ --network-endpoint tcp://eth0:8800 \ diff --git a/integration/sawtooth_integration/tests/test_intkey_smoke.py b/integration/sawtooth_integration/tests/test_intkey_smoke.py index d691c4e..0a86bb5 100644 --- a/integration/sawtooth_integration/tests/test_intkey_smoke.py +++ b/integration/sawtooth_integration/tests/test_intkey_smoke.py @@ -65,9 +65,9 @@ class TestIntkeySmoke(unittest.TestCase): populate, valid_txns, invalid_txns, - valid_txns, - populate, - valid_txns + # valid_txns, + # populate, + # valid_txns ) how_many_updates = 0 @@ -77,14 +77,16 @@ class TestIntkeySmoke(unittest.TestCase): how_many_updates += 1 self.post_and_verify(batch, how_many_updates) + time.sleep(300) + # assertions def post_and_verify(self, batch, how_many_updates): batch = IntkeyMessageFactory().create_batch(batch) LOGGER.info('Posting batch') _post_batch(batch) - time.sleep(1) - self.verify_state_after_n_updates(how_many_updates) + time.sleep(3) + # self.verify_state_after_n_updates(how_many_updates) def verify_state_after_n_updates(self, num): LOGGER.debug('Verifying state after {} updates'.format(num))