Skip to content

Commit

Permalink
Add Python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
theSoenke committed Oct 11, 2023
1 parent 3fd81cf commit 30738bf
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Python Tests
on: [push]
jobs:
rspec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
npm install
npm run generate.python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
working-directory: ./clients/python
- name: Run tests
run: |
cd ./clients/python
pip install -r test-requirements.txt
python -m unittest

0 comments on commit 30738bf

Please sign in to comment.