mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-17 01:11:19 +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')
|