File: __main__.py

package info (click to toggle)
pcbasic 2.0.7-8
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 35,416 kB
  • sloc: python: 28,411; sh: 103; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
import os
import sys

from .test import test_main

# make pcbasic package accessible if run from top level
HERE = os.path.dirname(os.path.abspath(__file__))
sys.path = [HERE] + sys.path

# run tests
test_main()