mirror of
https://github.com/bellingcat/tiktok-hashtag-analysis.git
synced 2026-06-07 19:08:32 +03:00
12 lines
175 B
Python
12 lines
175 B
Python
import os
|
|
import tempfile
|
|
|
|
import pytest
|
|
|
|
TEST_HASHTAGS = ["embraceeuropa", "francisparkeryockey"]
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def hashtags():
|
|
return TEST_HASHTAGS
|