Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/domdfcoding/tox-raspi-ci
tox integration for raspi-ci.
https://github.com/domdfcoding/tox-raspi-ci
python tox tox-plugin
Last synced: 21 days ago
JSON representation
tox integration for raspi-ci.
- Host: GitHub
- URL: https://github.com/domdfcoding/tox-raspi-ci
- Owner: domdfcoding
- License: mit
- Created: 2022-03-24T11:10:15.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-29T17:30:18.000Z (3 months ago)
- Last Synced: 2024-07-29T23:16:51.695Z (3 months ago)
- Topics: python, tox, tox-plugin
- Language: Python
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
############
tox-raspi-ci
############.. start short_desc
**tox integration for raspi-ci.**
.. end short_desc
``raspi-ci`` is an experimental CI system for running Python tests on Raspberry Pi SBCs.
.. start shields
.. list-table::
:stub-columns: 1
:widths: 10 90* - Tests
- |actions_linux| |coveralls|
* - Activity
- |commits-latest| |commits-since| |maintained|
* - QA
- |codefactor| |actions_flake8| |actions_mypy|
* - Other
- |license| |language| |requires|.. |actions_linux| image:: https://github.com/domdfcoding/tox-raspi-ci/workflows/Linux/badge.svg
:target: https://github.com/domdfcoding/tox-raspi-ci/actions?query=workflow%3A%22Linux%22
:alt: Linux Test Status.. |actions_flake8| image:: https://github.com/domdfcoding/tox-raspi-ci/workflows/Flake8/badge.svg
:target: https://github.com/domdfcoding/tox-raspi-ci/actions?query=workflow%3A%22Flake8%22
:alt: Flake8 Status.. |actions_mypy| image:: https://github.com/domdfcoding/tox-raspi-ci/workflows/mypy/badge.svg
:target: https://github.com/domdfcoding/tox-raspi-ci/actions?query=workflow%3A%22mypy%22
:alt: mypy status.. |requires| image:: https://dependency-dash.repo-helper.uk/github/domdfcoding/tox-raspi-ci/badge.svg
:target: https://dependency-dash.repo-helper.uk/github/domdfcoding/tox-raspi-ci/
:alt: Requirements Status.. |coveralls| image:: https://img.shields.io/coveralls/github/domdfcoding/tox-raspi-ci/master?logo=coveralls
:target: https://coveralls.io/github/domdfcoding/tox-raspi-ci?branch=master
:alt: Coverage.. |codefactor| image:: https://img.shields.io/codefactor/grade/github/domdfcoding/tox-raspi-ci?logo=codefactor
:target: https://www.codefactor.io/repository/github/domdfcoding/tox-raspi-ci
:alt: CodeFactor Grade.. |license| image:: https://img.shields.io/github/license/domdfcoding/tox-raspi-ci
:target: https://github.com/domdfcoding/tox-raspi-ci/blob/master/LICENSE
:alt: License.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/tox-raspi-ci
:alt: GitHub top language.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/tox-raspi-ci/v0.0.0
:target: https://github.com/domdfcoding/tox-raspi-ci/pulse
:alt: GitHub commits since tagged version.. |commits-latest| image:: https://img.shields.io/github/last-commit/domdfcoding/tox-raspi-ci
:target: https://github.com/domdfcoding/tox-raspi-ci/commit/master
:alt: GitHub last commit.. |maintained| image:: https://img.shields.io/maintenance/yes/2024
:alt: Maintenance.. end shields
Configuration
----------------In your ``tox.ini`` file, add the following:
.. code-block:: ini
[envlists]
raspi = py36, py37, py38This will configure ``raspi-ci`` to run the environments ``py36``, ``py37`` and ``py38``.
Usage
-------Run tox using the ``--raspi-ci`` option.
Installation
--------------.. start installation
``tox-raspi-ci`` can be installed from GitHub.
To install with ``pip``:
.. code-block:: bash
$ python -m pip install git+https://github.com/domdfcoding/tox-raspi-ci
.. end installation