Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeshan333/busted_junit_demo
lua busted junit report demo
https://github.com/yeshan333/busted_junit_demo
busted junit
Last synced: 25 days ago
JSON representation
lua busted junit report demo
- Host: GitHub
- URL: https://github.com/yeshan333/busted_junit_demo
- Owner: yeshan333
- Created: 2024-01-15T16:42:22.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-16T09:22:19.000Z (11 months ago)
- Last Synced: 2024-05-07T18:15:32.559Z (8 months ago)
- Topics: busted, junit
- Language: Lua
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lua Busted DEV Container
```shell
devcontainer builddevcontainer open
# get gtest output format
busted spec/busted_demo.spec.lua --output=gtest --output-file# get junit output format
busted spec/busted_demo.spec.lua --output=junit# specific out file
# demo: https://jenkins.shan333.cn/job/busted_junit_demo/2/testReport/
busted spec/busted_demo.spec.lua --output=junit --Xoutput official_junitv2.2.xml# split xml out
# demo: https://jenkins.shan333.cn/job/busted_junit_demo/3/testReport/spec/
busted spec/*.spec.lua --output=junit --Xoutput true
# no cases
busted *.xxspec.lua --output=junit --Xoutput true
```