Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
/ sunshine Public archive

Sunshine allows you to manage suits of your automated tests directly from Java code.

License

Notifications You must be signed in to change notification settings

tatools/sunshine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sunshine

Sunshine allows you to manage suits of your automated tests directly from Java code. It supports TestNg, JUnit 4, and JUnit 5.

Please read the documentation at https://sunshine.readthedocs.io.

Build Status Documentation Status Codacy Badge codebeat badge codecov PDD status

assistant: Elegant Git

Rultor.com

How to contribute?

If you have any questions or want more functionality, please submit a new issue.

Before sending any pull request, please discuss requirements/changes to be implemented using an existing issue or by creating a new one.

Development notes

If you will install https://elegant-git.bees-hive.org and use Git via CLI, all required workflows will be executed automatically. Otherwise, you can do it manually by running ./workflows script.

Code formatting

We use https://github.com/diffplug/spotless to format the code. Please run ./gradlew spotlessApply to call the formatting manually.

Code assessment

Run ./gradlew (or gradlew.bat). It will execute unit, integration tests, and formatting verifications.

Docs review

Automatic analysis of documentation changes in not configured. That's why manual validation is required.

The following snippet allows generation of HTML version of the documentation

cd docs
rm -r _build && make html
open _build/html/index.html

Please take into account, you need to install required Python's dependencies with pip install -r docs/requirements.txt before.