tests.common   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 0
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
"""
4
Created on Fri Dec 20 12:12:31 2019
5
6
@author: Paolo Cozzi <[email protected]>
7
"""
8
9
import os
10
11
# get my path
12
dir_path = os.path.dirname(os.path.realpath(__file__))
13
14
# define data path
15
DATA_PATH = os.path.join(dir_path, "data")
16