We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50bd729 commit 2b8b2eaCopy full SHA for 2b8b2ea
2 files changed
tests/test_async.py
@@ -7,6 +7,7 @@
7
from dotenv import load_dotenv
8
9
pytestmark = pytest.mark.asyncio
10
+load_dotenv()
11
12
13
class TestAsyncClient(asynctest.TestCase):
@@ -16,8 +17,6 @@ class TestAsyncClient(asynctest.TestCase):
16
17
CLUB_TAG = '#QCCQCGV'
18
19
async def setUp(self):
- load_dotenv()
20
-
21
session = aiohttp.ClientSession(loop=self.loop)
22
23
self.client = brawlstats.Client(
tests/test_blocking.py
@@ -4,14 +4,15 @@
4
import brawlstats
5
6
+
class TestBlockingClient(unittest.TestCase):
PLAYER_TAG = '#GGJVJLU2'
14
15
def setUp(self):
os.getenv('token'),
0 commit comments