1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-16 03:24:17 +02:00

feat: Initialize django at the beginning

This commit is contained in:
Cristian
2020-10-26 07:45:21 -05:00
parent 5faadee7d1
commit e1d0b8bce7
5 changed files with 7 additions and 13 deletions

View File

@@ -6,6 +6,7 @@ import pytest
@pytest.fixture
def process(tmp_path):
os.chdir(tmp_path)
print("should be at", tmp_path)
process = subprocess.run(['archivebox', 'init'], capture_output=True)
return process