-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (40 loc) · 1.34 KB
/
go-rxr-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# This workflow is designed to set up the necessary Python environment, install dependencies,
# and run the full suite of non-GUI unit tests for the GO-RXR project. It ensures that the code is
# consistently tested on Ubuntu 22.04 with Python 3.10.12. For further details, see:
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: GO-RXR Tests
on:
push:
branches: ["main", "version-joss-rev"]
pull_request:
branches: ["main", "version-joss-rev"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Print ROOT_DIR
run: echo "ROOT_DIR is $ROOT_DIR"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10.14'
# - name: Install app dependencies
# run: |
# pip install .
- name: Install dependencies
run: |
pip install --upgrade pip setuptools
pip install -r requirements.txt
- name: Install PyQt5 Dependencies
run: |
sudo apt-get install -y pyqt5-dev libqt5multimedia5-plugins
- name: Install Reflectivity Package
run: |
python setup_reflectivity.py install
- name: Run tests
run: |
python -m unittest discover -s TESTS -p "test_*.py"