mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
9 lines
197 B
Python
9 lines
197 B
Python
import os
|
|
import sys
|
|
from os.path import abspath, basename, exists, dirname, join
|
|
|
|
import pytest
|
|
|
|
project_dir = join(dirname(abspath(__file__)), '../..')
|
|
scripts_dir = join(project_dir, 'scrpits')
|