Merge pull request #661 from tira-io/development #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: [push] | |
jobs: | |
backend-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
python-version: ["3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install TIRA Python Client from Repo | |
working-directory: ${{github.workspace}}/python-client | |
run: | | |
# Install tira from the repository since the pip version may not be up-to-date enough. | |
# The install musst be editable (-e) since importing from tira fails otherwise | |
pip3 install .[dev,test] | |
- name: Install dependencies | |
working-directory: ${{github.workspace}}/application | |
run: | | |
pip3 install .[dev,test] | |
make setup | |
env: | |
TIRA_ROOT: ${{github.workspace}}/model/src | |
TIRA_CONFIG: ${{github.workspace}}/application/config/tira-application-config.yml | |
DISCOURSE_API_KEY: "I am so secret" | |
- name: Run backend tests | |
working-directory: ${{github.workspace}}/application/test | |
run: pytest | |
frontend-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
working-directory: ${{github.workspace}}/frontend | |
run: yarn --frozen-lockfile | |
- name: Run frontend tests | |
working-directory: ${{github.workspace}}/frontend | |
run: yarn test | |
python-client-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Install Dependencies | |
working-directory: ${{github.workspace}}/python-client | |
run: | | |
sudo apt-get install -y openjdk-11-jdk | |
pip3 install .[test,dev] | |
- name: Running Tests | |
working-directory: ${{github.workspace}}/python-client | |
run: | | |
echo running on branch ${GITHUB_REF##*/} | |
pytest |