blob: 0c875b96fe2bce99b0294e0a487484fbe528911b (
plain)
1
2
3
4
5
6
7
|
import os
def includeme(config):
here = here = os.path.dirname(__file__)
fixtures = os.path.normpath(os.path.join(here, '..', '..', 'fixtures'))
config.add_static_view('/', fixtures)
|