Completed
Pull Request — master (#623)
by
unknown
57s
created

tests.dir_tests()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 3
rs 10
cc 1
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
"""
5
utils
6
--------
7
8
Contains test utilities.
9
"""
10
11
import os
12
13
14
def dir_tests(*paths):
15
    dirname = os.path.dirname(__file__)
16
    return os.path.abspath(os.path.join(dirname, *paths))
17