Skip to content

Make tests run on rhel8 #16

Make tests run on rhel8

Make tests run on rhel8 #16

Workflow file for this run

name: CI Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Install Ubuntu Packages
run: |
sudo apt-get -y install tcsh
- name: Install Python Packages
run: |
pip install -U pip
pip install pytest
pip install .
- name: Test with pytest
run: |
echo $(which python)
echo $(which python3.11)
echo $(which python3.8)
echo $(ls -la /usr/bin | grep python)
rm -r komodoenv # Remove sources
pytest tests