https://github.com/agrover112/buildtest

HPC System and Software Testing Framework

https://github.com/agrover112/buildtest

Science Score: 33.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Committers with academic emails
    2 of 11 committers (18.2%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.8%) to scientific vocabulary

Keywords from Contributors

testing-framework system-testing test-automation buildtest json-schema hacking sequences medical-imaging distribution projection
Last synced: 10 months ago · JSON representation

Repository

HPC System and Software Testing Framework

Basic Info
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Fork of buildtesters/buildtest
Created about 5 years ago · Last pushed about 5 years ago
Metadata Files
Readme Changelog Contributing License Code of conduct

README.rst

| |license| |docs| |codecov| |slack| |release| |installation| |regressiontest| |gh_pages_master| |gh_pages_devel| |checkurls| |dailyurlcheck| |codefactor| |blackformat|  |black| |issues| |open_pr| |commit_activity_yearly| |commit_activity_monthly| |core_infrastructure| |zenodo|

.. |docs| image:: https://readthedocs.org/projects/buildtest/badge/?version=latest
    :alt: Documentation Status
    :scale: 100%
    :target: https://buildtest.readthedocs.io/en/latest/?badge=latest

.. |slack| image:: http://hpcbuildtest.herokuapp.com/badge.svg
    :target: http://hpcbuildtest.slack.com

.. |license| image:: https://img.shields.io/github/license/buildtesters/buildtest.svg

.. |release| image:: https://img.shields.io/github/v/release/buildtesters/buildtest.svg
   :target: https://github.com/buildtesters/buildtest/releases
   
.. |issues| image:: https://img.shields.io/github/issues/buildtesters/buildtest.svg 
    :target: https://github.com/buildtesters/buildtest/issues
    
.. |open_pr| image:: https://img.shields.io/github/issues-pr/buildtesters/buildtest.svg
    :target: https://github.com/buildtesters/buildtest/pulls
    
.. |commit_activity_yearly| image:: https://img.shields.io/github/commit-activity/y/buildtesters/buildtest.svg
 
.. |commit_activity_monthly| image:: https://img.shields.io/github/commit-activity/m/buildtesters/buildtest.svg

.. |core_infrastructure| image:: https://bestpractices.coreinfrastructure.org/projects/3469/badge

.. |codecov| image:: https://codecov.io/gh/buildtesters/buildtest/branch/devel/graph/badge.svg
    :target: https://codecov.io/gh/buildtesters/buildtest

.. |codefactor| image:: https://www.codefactor.io/repository/github/buildtesters/buildtest/badge
    :target: https://www.codefactor.io/repository/github/buildtesters/buildtest
    :alt: CodeFactor

.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black

.. |checkurls| image:: https://github.com/buildtesters/buildtest/workflows/Check%20URLs/badge.svg
    :target: https://github.com/buildtesters/buildtest/actions

.. |blackformat| image:: https://github.com/buildtesters/buildtest/workflows/Black%20Formatter/badge.svg
    :target: https://github.com/buildtesters/buildtest/actions

.. |installation| image:: https://github.com/buildtesters/buildtest/workflows/installation/badge.svg
   :target: https://github.com/buildtesters/buildtest/actions

.. |regressiontest| image:: https://github.com/buildtesters/buildtest/workflows/regressiontest/badge.svg
    :target: https://github.com/buildtesters/buildtest/actions

.. |gh_pages_devel| image:: https://github.com/buildtesters/buildtest/workflows/Upload%20JSON%20Schema%20to%20gh-pages%20on%20devel/badge.svg
    :target: https://github.com/buildtesters/buildtest/actions

.. |gh_pages_master| image:: https://github.com/buildtesters/buildtest/workflows/Upload%20JSON%20Schema%20to%20gh-pages%20for%20master%20branch/badge.svg
    :target: https://github.com/buildtesters/buildtest/actions    

.. |dailyurlcheck| image:: https://github.com/buildtesters/buildtest/workflows/Daily%20Check%20URLs/badge.svg
   :target: https://github.com/buildtesters/buildtest/actions

.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3967143.svg
   :target: https://doi.org/10.5281/zenodo.3967143

buildtest
---------

`buildtest `_ is a testing framework for HPC facilities to write acceptance test
for their system. In buildtest, you will write tests in `YAML `_
called **Buildspecs** which is a test recipe used by buildtest for generating test scripts.
buildtest will process *buildspecs* and automatically create shell-scripts and run them
on your system. buildtest supports `IBM Spectrum LSF `_,
`Slurm `_, and `Cobalt `_ batch scheduler for job submission.
buildtest makes use of `jsonschema `_ to define structure of buildspecs used for validating buildspecs. 

If you want to learn more about buildtest read https://buildtest.readthedocs.io/en/latest/what_is_buildtest.html.

Installation
--------------


Installing buildtest, is relatively easy. Just clone this repo and source the setup script::

    git clone https://github.com/buildtesters/buildtest.git
    cd buildtest
    source setup.sh


For more details see `installing buildtest `_.


Schema Development
-------------------

The schemas are found in top-level folder `buildtest/schemas/ `_
and published via Github Pages at https://buildtesters.github.io/buildtest/. Each schema has a unique URI defined
by `$id `_.

For any issues with schema, please create an `issue `_ in buildtest.

References
------------

- Documentation: http://buildtest.rtfd.io/

- Schema Docs: https://buildtesters.github.io/buildtest/

- ReadTheDocs: https://readthedocs.org/projects/buildtest/

- CodeCov: https://codecov.io/gh/buildtesters/buildtest

- CodeFactor: https://www.codefactor.io/repository/github/buildtesters/buildtest

- Snyk: https://app.snyk.io/org/buildtesters/

Documentation
-------------

buildtest `documentation `_  is your
source for getting help with buildtest. If you get stuck check out the
`current issues `_ to see
if you face similar issue. If all else fails please create a ticket.

Source Code
------------

buildtest source code is under `buildtest `_
directory found in the root of this repository. The documentation pages are located in
`docs `_ folder
which consist of `Makefile `_ and
`conf.py `_ to build the sphinx project along with documentation pages in
ReStructuredText (rst). The regression test are found in top-level directory
named `tests `_ and the test suite is run via `pytest `_.

Slack
------

Slack is the **preferred** method for communication and user support with buildtest.
If you haven't joined slack click the `self invite `_
to register your account. Once you have an account you can access slack channel at https://hpcbuildtest.slack.com and post
your questions in **#general** channel.

Contributing Back
-------------------

We would love to get your feedback and contribution, for more details see
`contribution guide `_.

Author
-------

buildtest was founded by `Shahzeb Siddiqui `_.

LICENSE
--------

buildtest is released under the MIT License. See
`LICENSE `_ for more details.

Owner

  • Login: Agrover112
  • Kind: user

Humans trying to understand machines and people.

GitHub Events

Total
Last Year

Committers

Last synced: 12 months ago

All Time
  • Total Commits: 1,424
  • Total Committers: 11
  • Avg Commits per committer: 129.455
  • Development Distribution Score (DDS): 0.043
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Shahzeb Siddiqui s****i@g****m 1,363
Vanessasaurus v****t@g****m 24
dependabot[bot] 4****] 18
snyk-bot s****t@s****o 6
Vijay Singh V****h@P****m 5
Shahzeb Siddiqui S****i@p****m 2
Shahzeb Siddiqui s****i@l****v 2
Fotis Georgatos k****a@g****m 1
ImgBotApp I****p@g****m 1
Paul Mure 5****e 1
vsoch v****t@s****u 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 12 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

.github/workflows/black.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • psf/black stable composite
.github/workflows/gh_pages_master.yml actions
  • JamesIves/github-pages-deploy-action 4.1.1 composite
  • actions/checkout v2 composite
  • actions/checkout v2.3.1 composite
  • actions/download-artifact v2 composite
  • actions/setup-node v2.1.5 composite
  • actions/upload-artifact v2 composite
.github/workflows/greetings.yml actions
  • actions/first-interaction v1 composite
.github/workflows/installation.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
.github/workflows/jsonschemadocs.yml actions
  • JamesIves/github-pages-deploy-action 4.1.1 composite
  • actions/checkout v2 composite
  • actions/checkout v2.3.1 composite
  • actions/download-artifact v2 composite
  • actions/setup-node v2.1.5 composite
  • actions/upload-artifact v2 composite
.github/workflows/mirror.yml actions
  • actions/checkout v1 composite
  • stenongithub/gitlab-mirror-and-ci-action 0.2.8 composite
.github/workflows/regression.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • codecov/codecov-action v1 composite
.github/workflows/urlcheck_cron.yml actions
  • actions/checkout v2 composite
  • urlstechie/urlchecker-action 0.2.3 composite
.github/workflows/urlchecker.yml actions
  • actions/checkout v2 composite
  • urlstechie/urlchecker-action 0.2.3 composite
buildtest/executors/setup.py pypi
docs/requirements.txt pypi
  • Sphinx *
  • black ==21.5b0
  • codecov *
  • coverage *
  • pre-commit *
  • pyflakes *
  • pytest *
  • sphinx-autoapi *
  • sphinx-rtd-theme *
  • sphinxcontrib-programoutput *