blob: 812cca467ce97adc24408db1dae86e387ac6a6fb (
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)
|