mirror of https://github.com/searxng/searxng.git
WIP
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
befd1362aa
commit
40d13b1359
|
@ -39,16 +39,20 @@ jobs:
|
||||||
./node_modules
|
./node_modules
|
||||||
key: python-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements*.txt', 'setup.py') }}
|
key: python-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements*.txt', 'setup.py') }}
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
if: steps.cache-python.outputs.cache-hit != 'true'
|
|
||||||
run: |
|
run: |
|
||||||
make V=1 install
|
make V=1 install
|
||||||
make V=1 gecko.driver
|
make V=1 gecko.driver
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make V=1 ci.test
|
run: |
|
||||||
|
env
|
||||||
|
which firefox
|
||||||
|
ls -la /snap/bin/firefox
|
||||||
|
file /snap/bin/firefox
|
||||||
|
make V=1 ci.test
|
||||||
- name: Test coverage
|
- name: Test coverage
|
||||||
run: make V=1 test.coverage
|
run: make V=1 test.coverage
|
||||||
- name: Store coverage result
|
- name: Store coverage result
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: coverage-${{ matrix.python-version }}
|
name: coverage-${{ matrix.python-version }}
|
||||||
path: coverage/
|
path: coverage/
|
||||||
|
|
Loading…
Reference in New Issue