diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 580e722..b3f287c 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -13,20 +13,24 @@ permissions: contents: read jobs: - build: + test: - runs-on: python:3.8-buster + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" - name: Install dependencies run: | # The first requirements are for pygobject. # The last - xvfb - comes from https://pygobject.readthedocs.io/en/latest/guide/testing.html: # to run a GTK app headless we create a fake X server with xvfb - apt-get update &&\ - apt-get install -y libgirepository1.0-dev gcc libcairo2-dev pkg-config gir1.2-gtk-3.0 xvfb &&\ - pip install . + sudo apt-get update &&\ + sudo apt-get install -y libgirepository1.0-dev gcc libcairo2-dev pkg-config gir1.2-gtk-3.0 xvfb &&\ + pip install . - name: Test with pytest run: | xvfb-run pytest unit/ diff --git a/README.md b/README.md index 19863fb..c41eb59 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -Resume application project app icon - # Nemo In drones or in robotics, brushless motors are becoming more and more common. However, choosing the right motor for the right application can be quite difficult. Indeed, understanding datasheets can be quite complexe: is a motor with a no-load speed of 5000rpm more powerful that one with the same torque, but specified for 3000rpm at max torque? How do you compare a motor with a KV of 500 rpm/V with one with a Kt of 0.5Nm/Arms? And what do these value even mean? Sometimes you might feel like nobody can answer - well now, **Nemo** can! @@ -39,4 +37,4 @@ pip install . ### Windows binary -TODO \ No newline at end of file +TODO diff --git a/src/nemo_bldc/doc/logo.png b/src/nemo_bldc/doc/logo.png deleted file mode 100644 index 985d165..0000000 Binary files a/src/nemo_bldc/doc/logo.png and /dev/null differ