summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/test/frontend/data/schedules/moz.build
blob: 3f4f450d375c840daa5b346cbb86bee643720096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Any copyright is dedicated to the Public Domain.
# http://creativecommons.org/publicdomain/zero/1.0/

with Files("*.win"):
    SCHEDULES.exclusive = ["windows"]

with Files("*.osx"):
    SCHEDULES.exclusive = ["macosx"]

with Files("win.and.osx"):
    # this conflicts with the previous clause and will cause an error
    # when read
    SCHEDULES.exclusive = ["macosx", "windows"]

with Files("subd/**.py"):
    SCHEDULES.inclusive += ["py-lint"]

with Files("**/*.js"):
    SCHEDULES.inclusive += ["js-lint"]