Browse Source

...

PYADPT-55
Volker Birk 6 years ago
parent
commit
dbe158a3a4
  1. 20
      test/sync_test.py

20
test/sync_test.py

@ -0,0 +1,20 @@
# vim: set fileencoding=utf-8 :
# Sync test 2.0
# Copyleft 2018, Volker Birk
# this file is under GNU General Public License 3.0
import os
def setup(path):
cwd = os.getcwd();
os.makedirs(path, exist_ok=True)
os.chdir(path)
lib_path = os.path.join(os.environ["HOME"], "lib")
Library_path = os.path.join(os.environ["HOME"], "Library")
os.chdir(cwd)
Loading…
Cancel
Save