File: conftest.py

package info (click to toggle)
python-proton-vpn-api-core 4.16.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,312 kB
  • sloc: python: 11,057; makefile: 9
file content (8 lines) | stat: -rw-r--r-- 229 bytes parent folder | download
1
2
3
4
5
6
7
8
import sys
import os

import proton.vpn
proton.vpn.__path__ = list(proton.vpn.__path__) + [
    p + '/proton/vpn' for p in os.environ.get('PYTHONPATH', '').split(':')
    if '.pybuild' in p and os.path.isdir(p + '/proton/vpn')
]