mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 16:09:14 +00:00
* Define sub-projects and set coverage threshold for failure in the `codecov.yml`; make both test execution engines to generate also JUnit reports; upload these JUnit reports to Codecov for analysis * Fix UI Vite config and add more details to the API is-generated-code script * Add API JUnit report file to `.gitignore` * Fix the copy issue by mounting the volume * put the exact report name to the `docker cp` command * Added `set -euxo pipeline` to the `test_api_coverage.sh` script; try to fix the missing report issue by setting immutable flag and report directoty * Revert `chattr` and `set` commands, as they cause errors * debug * put the filename of the JUnit report to upload * `set -euxo pipefail` in `scripts/test_api_coverage.sh` --------- Co-authored-by: Konstantin Koval
50 lines
566 B
Plaintext
50 lines
566 B
Plaintext
# See https://help.github.com/ignore-files/ for more about ignoring files.
|
|
|
|
cache/
|
|
/media_cache/
|
|
/api/media_cache/
|
|
/photos_path
|
|
photoview.db*
|
|
|
|
.env
|
|
testing.env
|
|
|
|
# docker
|
|
docker-compose.yml
|
|
/Makefile
|
|
/storage
|
|
/database
|
|
/tmp
|
|
|
|
# dependencies
|
|
node_modules/
|
|
|
|
# testing
|
|
/ui/coverage
|
|
/api/coverage.txt
|
|
/api/test-*-report.xml
|
|
|
|
# building
|
|
.cache/
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# misc
|
|
.DS_Store
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
yarn.lock
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.eslintcache
|
|
|
|
# IDEs
|
|
.vscode
|
|
__debug_bin
|
|
.idea
|
|
.nvmrc
|