-
Notifications
You must be signed in to change notification settings - Fork 37
46 lines (38 loc) · 1.11 KB
/
python-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
# run make test for python
name: Python Tests
on:
- pull_request
jobs:
python-translations:
runs-on: ubuntu-latest
steps:
# Define which file extensions, when touched, should trigger the
# Python tests, so we can skip this Action if we've only touched .po files
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
non_pofiles:
- '**.txt'
- '**.yml'
- '**.in'
- '**.py'
# Clones the openedx-translations repo
- name: clone openedx/openedx-translations
uses: actions/checkout@v3
- name: Install gettext
if: steps.filter.outputs.non_pofiles == 'true'
run: |
sudo apt install -y gettext
# Sets up Python
- name: setup python
if: steps.filter.outputs.non_pofiles == 'true'
uses: actions/setup-python@v4
with:
python-version: '3.11'
# Run the script
- name: run python tests
if: steps.filter.outputs.non_pofiles == 'true'
run: |
make test_requirements
make test