Skip to content

Instantly share code, notes, and snippets.

@danggrianto
Created June 26, 2019 20:15
Show Gist options
  • Save danggrianto/fff697e55ea1bda5ad2788dea183d0a1 to your computer and use it in GitHub Desktop.
Save danggrianto/fff697e55ea1bda5ad2788dea183d0a1 to your computer and use it in GitHub Desktop.
parallel testing demo
from unittest import TestCase
from uuid import uuid4
class ParallelTest(TestCase):
def setUp(self):
self._id = uuid4().hex
def test_uuid_one(self):
self.assertEqual('a', self._id)
def test_uuid_two(self):
self.assertEqual('a', self._id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment