Skip to content

Commit

Permalink
drop rpi_test
Browse files Browse the repository at this point in the history
  • Loading branch information
MateoLostanlen committed Apr 4, 2024
1 parent e53e357 commit 3d9562c
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .github/workflows/pi.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
name: tests-RPI
# name: tests-RPI

on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
# on:
# push:
# branches: [main, develop]
# pull_request:
# branches: [main, develop]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [self-hosted]
steps:
- uses: actions/checkout@v2
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -e . --upgrade
# jobs:
# build:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [self-hosted]
# steps:
# - uses: actions/checkout@v2
# - name: Install package
# run: |
# python -m pip install --upgrade pip
# pip install -e . --upgrade

pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [self-hosted]
needs: build
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: pip install -e ".[test]" --upgrade
# pytest:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [self-hosted]
# needs: build
# steps:
# - uses: actions/checkout@v2
# - name: Install dependencies
# run: pip install -e ".[test]" --upgrade

- name: Run unittests
run: coverage run -m pytest tests/
# - name: Run unittests
# run: coverage run -m pytest tests/

0 comments on commit 3d9562c

Please sign in to comment.