allure 2.0.1 (new formula)
parent
1e472417ca
commit
63532dff61
|
@ -0,0 +1,48 @@
|
|||
class Allure < Formula
|
||||
desc "Flexible lightweight test report tool"
|
||||
homepage "https://github.com/allure-framework/allure2"
|
||||
url "https://dl.bintray.com/qameta/generic/io/qameta/allure/allure/2.0.1/allure-2.0.1.zip"
|
||||
sha256 "e66a396f157bd4cc42b0fe41e48e28eb1561692824c1953045272c7a7b8e6d40"
|
||||
|
||||
bottle :unneeded
|
||||
|
||||
depends_on :java => "1.8"
|
||||
|
||||
def install
|
||||
# Remove all windows files
|
||||
rm_f Dir["bin/*.bat"]
|
||||
|
||||
prefix.install_metafiles
|
||||
libexec.install Dir["*"]
|
||||
bin.install_symlink Dir["#{libexec}/bin/*"]
|
||||
end
|
||||
|
||||
test do
|
||||
(testpath/"allure-results/allure-result.json").write <<-EOS.undent
|
||||
{
|
||||
"uuid": "allure",
|
||||
"name": "testReportGeneration",
|
||||
"fullName": "org.homebrew.AllureFormula.testReportGeneration",
|
||||
"status": "passed",
|
||||
"stage": "finished",
|
||||
"start": 1494857300486,
|
||||
"stop": 1494857300492,
|
||||
"labels": [
|
||||
{
|
||||
"name": "package",
|
||||
"value": "org.homebrew"
|
||||
},
|
||||
{
|
||||
"name": "testClass",
|
||||
"value": "AllureFormula"
|
||||
},
|
||||
{
|
||||
"name": "testMethod",
|
||||
"value": "testReportGeneration"
|
||||
}
|
||||
]
|
||||
}
|
||||
EOS
|
||||
system "#{bin}/allure", "generate", "#{testpath}/allure-results", "-o", "#{testpath}/allure-report"
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue