1# This Source Code Form is subject to the terms of the Mozilla Public
2# License, v. 2.0. If a copy of the MPL was not distributed with this
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5from __future__ import absolute_import
6
7from condprof.scenarii.full import full
8from condprof.scenarii.settled import settled
9from condprof.scenarii.settled2 import settled2
10from condprof.scenarii.settled_youtube import settled_youtube
11
12
13scenarii = {
14    "full": full,
15    "settled": settled,
16    "settled-youtube": settled_youtube,
17    "settled2": settled2,
18}
19