-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDangerfile
29 lines (22 loc) · 1.08 KB
/
Dangerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Sometimes it's a README fix, or something like that - which isn't relevant for
# including in a project's CHANGELOG for example
declared_trivial = github.pr_title.include? "#trivial"
# Make it more obvious that a PR is a work in progress and shouldn't be merged yet
warn("PR is classed as Work in Progress") if github.pr_title.include? "[WIP]"
# Warn when there is a big PR
warn("Big PR") if git.lines_of_code > 500
# Don't let testing shortcuts get into master by accident
fail("fdescribe left in tests") if `grep -r fdescribe specs/ `.length > 1
fail("fit left in tests") if `grep -r fit specs/ `.length > 1
forgot_tests = !git.modified_files.include?("/tests/run_tests.py")
if forgot_tests and not declared_trivial
warn("It appears that you forgot to add a Unit Test to the test file.\n Please add a test and upload the new version.\n The test file can currently be found at: tests/run_tests.py")
end
## Unit Tests
system("python3 ./tests/run_tests.py 2> log.txt")
unit_text = File.read("./log.txt")
if not unit_text.include?('OK')
fail(unit_text)
else
message("All Unit Test Passed! 🤟")
end