mirror of
https://github.com/django-import-export/django-import-export.git
synced 2025-12-13 12:43:59 +03:00
attempt to fix cp of coverage file
This commit is contained in:
parent
1b4c425dfb
commit
5236233bb6
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
|
@ -60,7 +60,7 @@ jobs:
|
||||||
- name: Run tox targets for ${{ matrix.python-version }} (sqlite)
|
- name: Run tox targets for ${{ matrix.python-version }} (sqlite)
|
||||||
run: |
|
run: |
|
||||||
tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
|
tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
|
||||||
mv .coverage .coverage.sqlite
|
find .tox -name '.coverage' -exec cp {} .coverage.sqlite \;
|
||||||
- name: Upload coverage data to coveralls.io (sqlite)
|
- name: Upload coverage data to coveralls.io (sqlite)
|
||||||
uses: coverallsapp/github-action@v2
|
uses: coverallsapp/github-action@v2
|
||||||
with:
|
with:
|
||||||
|
|
@ -70,7 +70,7 @@ jobs:
|
||||||
- name: Run tox targets for ${{ matrix.python-version }} (postgres)
|
- name: Run tox targets for ${{ matrix.python-version }} (postgres)
|
||||||
run: |
|
run: |
|
||||||
tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
|
tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
|
||||||
mv .coverage .coverage.postgres
|
find .tox -name '.coverage' -exec cp {} .coverage.postgres \;
|
||||||
env:
|
env:
|
||||||
IMPORT_EXPORT_TEST_TYPE: postgres
|
IMPORT_EXPORT_TEST_TYPE: postgres
|
||||||
- name: Upload coverage data to coveralls.io (postgres)
|
- name: Upload coverage data to coveralls.io (postgres)
|
||||||
|
|
@ -82,7 +82,7 @@ jobs:
|
||||||
- name: Run tox targets for ${{ matrix.python-version }} (mysql)
|
- name: Run tox targets for ${{ matrix.python-version }} (mysql)
|
||||||
run: |
|
run: |
|
||||||
tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
|
tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
|
||||||
mv .coverage .coverage.mysql
|
find .tox -name '.coverage' -exec cp {} .coverage.mysql \;
|
||||||
env:
|
env:
|
||||||
IMPORT_EXPORT_TEST_TYPE: mysql-innodb
|
IMPORT_EXPORT_TEST_TYPE: mysql-innodb
|
||||||
- name: Upload coverage data to coveralls.io (mysql)
|
- name: Upload coverage data to coveralls.io (mysql)
|
||||||
|
|
@ -101,4 +101,8 @@ jobs:
|
||||||
uses: coverallsapp/github-action@v2
|
uses: coverallsapp/github-action@v2
|
||||||
with:
|
with:
|
||||||
parallel-finished: true
|
parallel-finished: true
|
||||||
carryforward: "py3.9-sqlite,py3.9-postgres,py3.9-mysql,py3.10-sqlite,py3.10-postgres,py3.10-mysql,py3.11-sqlite,py3.11-postgres,py3.11-mysql,py3.12-sqlite,py3.12-postgres,py3.12-mysql"
|
carryforward: >-
|
||||||
|
py3.9-sqlite,py3.9-postgres,py3.9-mysql,
|
||||||
|
py3.10-sqlite,py3.10-postgres,py3.10-mysql,
|
||||||
|
py3.11-sqlite,py3.11-postgres,py3.11-mysql,
|
||||||
|
py3.12-sqlite,py3.12-postgres,py3.12-mysql
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user