~ubuntu-branches/debian/sid/pydoctor/sid

« back to all changes in this revision

Viewing changes to pydoctor/test/conftest.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2013-09-15 13:58:49 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130915135849-g206zbvqwvz0ptdg
Tags: 0.5b1+bzr603-1
* New upstream snapshot.
* Switch from cdbs to dh.
* Bump standards version to 3.9.4 (no changes).
* Update Vcs header.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import py
2
 
import sys
3
 
 
4
 
rootdir = py.magic.autopath().dirpath()
5
 
 
6
 
sys.path.append(str(rootdir.dirpath().dirpath()))
7
 
 
8
 
import py
9
 
Option = py.test.config.Option
10
 
 
11
 
option = py.test.config.addoptions("pydoctor options",
12
 
        Option('--view-html',
13
 
               action="store_true", default=False, dest="viewhtml", 
14
 
               help=("")))