All Projects → labgrid-project → Labgrid

labgrid-project / Labgrid

Licence: other
embedded systems control library for development, testing and installation

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Labgrid

Openthread
OpenThread released by Google is an open-source implementation of the Thread networking protocol
Stars: ✭ 2,643 (+2031.45%)
Mutual labels:  hacktoberfest, embedded
Lbadd
LBADD: An experimental, distributed SQL database
Stars: ✭ 362 (+191.94%)
Mutual labels:  hacktoberfest, distributed
Server
☁️ Nextcloud server, a safe home for all your data
Stars: ✭ 17,723 (+14192.74%)
Mutual labels:  hacktoberfest, distributed
Stm32f1xx Hal
A Rust embedded-hal HAL impl for the STM32F1 family based on japarics stm32f103xx-hal
Stars: ✭ 245 (+97.58%)
Mutual labels:  hacktoberfest, embedded
Azure Sdk For C
This repository is for active development of the Azure SDK for Embedded C. For consumers of the SDK we recommend visiting our versioned developer docs at https://azure.github.io/azure-sdk-for-c.
Stars: ✭ 77 (-37.9%)
Mutual labels:  hacktoberfest, embedded
Bastion
Highly-available Distributed Fault-tolerant Runtime
Stars: ✭ 2,333 (+1781.45%)
Mutual labels:  hacktoberfest, distributed
Rusefi
rusefi - GPL internal combustion engine control unit
Stars: ✭ 277 (+123.39%)
Mutual labels:  hacktoberfest, embedded
Easy Build
Collection of Dockerfiles for building embedded software distributions
Stars: ✭ 130 (+4.84%)
Mutual labels:  hacktoberfest, embedded
Openswiftui
WIP — OpenSwiftUI is an OpenSource implementation of Apple's SwiftUI DSL.
Stars: ✭ 967 (+679.84%)
Mutual labels:  hacktoberfest, embedded
Flutter Pi
A light-weight Flutter Engine Embedder for Raspberry Pi that runs without X.
Stars: ✭ 492 (+296.77%)
Mutual labels:  hacktoberfest, embedded
Hazelcast
Open-source distributed computation and storage platform
Stars: ✭ 4,662 (+3659.68%)
Mutual labels:  hacktoberfest, distributed
Dandelion
a diaspora* client for Android
Stars: ✭ 100 (-19.35%)
Mutual labels:  hacktoberfest, distributed
Libreelec.tv
Just enough OS for KODI
Stars: ✭ 1,358 (+995.16%)
Mutual labels:  hacktoberfest, embedded
U Root
A fully Go userland with Linux bootloaders! u-root can create a one-binary root file system (initramfs) containing a busybox-like set of tools written in Go.
Stars: ✭ 1,816 (+1364.52%)
Mutual labels:  hacktoberfest, embedded
Invoke Msbuild
Invoke-MsBuild PowerShell module to make building projects and solutions with MsBuild.exe easy.
Stars: ✭ 123 (-0.81%)
Mutual labels:  hacktoberfest
He4rtoberfest 2020
Stars: ✭ 124 (+0%)
Mutual labels:  hacktoberfest
Ortelius
Ortelius simplifies the implementation of microservices. By providing a central catalog of services with their deployment specs, application teams can easily consume and deploy services across cluster. Ortelius tracks application versions based on service updates and maps their service dependencies eliminating confusion and guess work.
Stars: ✭ 123 (-0.81%)
Mutual labels:  hacktoberfest
Mobile Wallet
A reference implementation of Mifos platform wallet and payment capabilities
Stars: ✭ 123 (-0.81%)
Mutual labels:  hacktoberfest
Cloudnet V3
CloudNet v3 is the next generation of Minecraft Java and Bedrock cloud systems
Stars: ✭ 124 (+0%)
Mutual labels:  hacktoberfest
Netbeans
Apache NetBeans
Stars: ✭ 1,747 (+1308.87%)
Mutual labels:  hacktoberfest

.. image:: labgrid_logo.png :alt: labgrid logo :align: center

Welcome to labgrid

|license| |unit-tests| |docker-build| |coverage-status| |docs-status| |chat|

Purpose

Labgrid is an embedded board control python library with a focus on testing, development and general automation. It includes a remote control layer to control boards connected to other hosts.

The idea behind labgrid is to create an abstraction of the hardware control layer needed for testing of embedded systems, automatic software installation and automation during development. Labgrid itself is not a testing framework, but is intended to be combined with pytest <https://docs.pytest.org>_ (and additional pytest plugins). Please see Design Decisions <https://labgrid.readthedocs.io/en/latest/design_decisions.html>_ for more background information.

It currently supports:

  • pytest plugin to write tests for embedded systems connecting serial console or SSH
  • remote client-exporter-coordinator infrastructure to make boards available from different computers on a network
  • power/reset management via drivers for power switches or onewire PIOs
  • upload of binaries via USB: imxusbloader/mxsusbloader (bootloader) or fastboot (kernel)

While labgrid is currently used for daily development on embedded boards and for automated testing, several planned features are not yet implemented and the APIs may be changed as more use-cases appear. We appreciate code contributions and feedback on using labgrid on other environments (see Contributing <https://labgrid.readthedocs.io/en/latest/development.html#contributing>_ for details). Please consider contacting us (via a GitHub issue) before starting larger changes, so we can discuss design trade-offs early and avoid redundant work. You can also look at Ideas <https://labgrid.readthedocs.io/en/latest/development.html#ideas>_ for enhancements which are not yet implemented.

Documentation

Read the Docs <http://labgrid.readthedocs.io/en/latest/>_

Contributing

Development Docs <http://labgrid.readthedocs.io/en/latest/development.html>_

IRC channel #labgrid on freenode (bridged to the Matrix channel #labgrid:matrix.org <https://app.element.io/#/room/#labgrid:matrix.org>_)

Background

Work on labgrid started at Pengutronix <http://pengutronix.de/>_ in late 2016 and is currently in active use and development.

Quickstart

See the Installation section <http://labgrid.readthedocs.io/en/latest/getting_started.html#Installation>_ for more details.

Clone the git repository:

.. code-block:: bash

$ git clone https://github.com/labgrid-project/labgrid

Create and activate a virtualenv for labgrid:

.. code-block:: bash

$ virtualenv -p python3 venv $ source venv/bin/activate

Install labgrid into the virtualenv:

.. code-block:: bash

$ pip install -r requirements.txt $ python setup.py install

Tests can now run via:

.. code-block:: bash

$ python -m pytest --lg-env

.. |license| image:: https://img.shields.io/badge/license-LGPLv2.1-blue.svg :alt: LGPLv2.1 :target: https://raw.githubusercontent.com/labgrid-project/labgrid/master/LICENSE

.. |unit-tests| image:: https://github.com/labgrid-project/labgrid/workflows/unit%20tests/badge.svg :alt: unit tests status :target: https://github.com/labgrid-project/labgrid/actions?query=workflow%3A%22unit+tests%22+branch%3Amaster

.. |docker-build| image:: https://github.com/labgrid-project/labgrid/workflows/docker%20build/badge.svg :alt: docker build status :target: https://github.com/labgrid-project/labgrid/actions?query=workflow%3A%22docker+build%22+branch%3Amaster

.. |coverage-status| image:: https://codecov.io/gh/labgrid-project/labgrid/branch/master/graph/badge.svg :alt: coverage status :target: https://codecov.io/gh/labgrid-project/labgrid

.. |docs-status| image:: https://readthedocs.org/projects/labgrid/badge/?version=latest :alt: documentation status :target: https://labgrid.readthedocs.io/en/latest/?badge=latest

.. |chat| image:: https://matrix.to/img/matrix-badge.svg :alt: chat :target: https://app.element.io/#/room/#labgrid:matrix.org

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].