mirror of
https://github.com/borgbase/vorta
synced 2024-12-21 15:23:15 +00:00
b015368fee
Move existing tests into subfolder `tests/unit`. Write integration tests that actually run the installed borg executable. Those tests can be found in `tests/integration`. Those pytest fixtures that are the same for both kinds of tests remain in `tests/conftest.py`. The others can be found in `tests/integration/conftest.py` or `tests/unit/conftest.py`. This adds nox to the project and configures it to run the tests with different borg versions. This also updates the ci workflow to run the integration tests using nox. * noxfile.py : Run pytest with a matrix of borg versions OR a specific borg version * Makefile : Run using nox. Add phonies `test-unit` and `test-integration`. * tests/conftest.py : Move some fixtures/functions to `tests/unit/conftest.py`. * tests/test_*.py --> tests/unit/ : Move unittests and assets into subfolder * tests/integration/ : Write integration tests. * requirements.d/dev.txt: Add `nox` and `pkgconfig`. The latter is needed for installing new borg versions. * .github/actions/setup/action.yml : Update to install pre-commit and nox when needed. The action now no longer installs Vorta. * .github/actions/install-dependencies/action.yml : Install system deps of borg with this new composite action. * .github/workflows/test.yml : Rename `test` ci to `test-unit` and update it for the new test setup. Implement `test-integration` ci. Signed-off-by: Chirag Aggarwal <thechiragaggarwal@gmail.com>
79 lines
3.2 KiB
Makefile
79 lines
3.2 KiB
Makefile
export VORTA_SRC := src/vorta
|
|
export APPSTREAM_METADATA := src/vorta/assets/metadata/com.borgbase.Vorta.appdata.xml
|
|
VERSION := $(shell python -c "from src.vorta._version import __version__; print(__version__)")
|
|
|
|
.PHONY : help clean lint test
|
|
.DEFAULT_GOAL := help
|
|
|
|
# Set Homebrew location to /opt/homebrew on Apple Silicon, /usr/local on Intel
|
|
ifeq ($(shell uname -m),arm64)
|
|
export HOMEBREW = /opt/homebrew
|
|
else
|
|
export HOMEBREW = /usr/local
|
|
endif
|
|
|
|
clean:
|
|
rm -rf dist/*
|
|
|
|
dist/Vorta.app: ## Build macOS app locally (without Borg)
|
|
pyinstaller --clean --noconfirm package/vorta.spec
|
|
cp -R ${HOMEBREW}/Caskroom/sparkle/*/Sparkle.framework dist/Vorta.app/Contents/Frameworks/
|
|
rm -rf build/vorta dist/vorta
|
|
|
|
dist/Vorta.dmg: dist/Vorta.app ## Create notarized macOS DMG for distribution.
|
|
python3 package/fix_app_qt_folder_names_for_codesign.py dist/Vorta.app
|
|
cd dist && sh ../package/macos-package-app.sh
|
|
|
|
github-release: dist/Vorta.dmg ## Add new Github release and attach macOS DMG
|
|
cp dist/Vorta.dmg dist/vorta-${VERSION}.dmg
|
|
hub release create --attach=dist/vorta-${VERSION}.dmg v${VERSION}
|
|
git checkout gh-pages
|
|
git commit -m 'rebuild pages' --allow-empty
|
|
git push upstream gh-pages
|
|
git checkout master
|
|
|
|
pypi-release: translations-to-qm ## Upload new release to PyPi
|
|
python setup.py sdist
|
|
twine upload dist/vorta-${VERSION}.tar.gz
|
|
|
|
bump-version: ## Tag new version. First set new version number in src/vorta/_version.py
|
|
xmlstarlet ed -L -u 'component/releases/release/@date' -v $(shell date +%F) ${APPSTREAM_METADATA}
|
|
xmlstarlet ed -L -u 'component/releases/release/@version' -v v${VERSION} ${APPSTREAM_METADATA}
|
|
git commit -a -m "Bump version to v${VERSION}"
|
|
git tag -a v${VERSION}
|
|
|
|
translations-from-source: ## Extract strings from source code / UI files, merge into .ts.
|
|
pylupdate5 -verbose -translate-function trans_late \
|
|
$$(find ${VORTA_SRC} -iname "*.py" -o -iname "*.ui") \
|
|
-ts ${VORTA_SRC}/i18n/ts/vorta.en.ts
|
|
|
|
translations-push: translations-from-source ## Upload .ts to Transifex.
|
|
tx push -s
|
|
|
|
translations-pull: ## Download .ts from Transifex.
|
|
tx pull -a
|
|
|
|
translations-to-qm: ## Compile .ts text files to binary .qm files.
|
|
for f in $$(ls ${VORTA_SRC}/i18n/ts/vorta.*.ts); do lrelease $$f -qm ${VORTA_SRC}/i18n/qm/$$(basename $$f .ts).qm; done
|
|
|
|
flatpak-install: translations-to-qm
|
|
pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} --no-build-isolation .
|
|
install -D ${APPSTREAM_METADATA} ${FLATPAK_DEST}/share/metainfo/com.borgbase.Vorta.appdata.xml
|
|
install -D src/vorta/assets/icons/icon.svg ${FLATPAK_DEST}/share/icons/hicolor/scalable/apps/com.borgbase.Vorta.svg
|
|
install -D package/icon-symbolic.svg ${FLATPAK_DEST}/share/icons/hicolor/symbolic/apps/com.borgbase.Vorta-symbolic.svg
|
|
install -D src/vorta/assets/metadata/com.borgbase.Vorta.desktop ${FLATPAK_DEST}/share/applications/com.borgbase.Vorta.desktop
|
|
|
|
lint:
|
|
pre-commit run --all-files --show-diff-on-failure
|
|
|
|
test:
|
|
nox -- --cov=vorta
|
|
|
|
test-unit:
|
|
nox -- --cov=vorta tests/unit
|
|
|
|
test-integration:
|
|
nox -- --cov=vorta tests/integration
|
|
|
|
help:
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|