Obs2Org is a cross platform command (works on *BSD, Linux, OS X and Windows) line program to convert Obsidian style Markdown files to Org-Mode files for Emacs and other Editors that support Org-Mode.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Test Workflow: make pipenv work

+11 -20
+11 -20
.woodpecker/test.yaml
··· 13 13 platform: linux/aarch64 14 14 15 15 steps: 16 - install pipenv: 17 - image: codeberg.org/release-candidate/ci-system:edge 18 - commands: 19 - - pip3 install --break-system-packages pipenv 20 - - pipenv install --dev 21 - 22 16 install pandoc: 23 17 image: codeberg.org/release-candidate/ci-system:edge 24 18 commands: 25 19 - apk add --no-cache pandoc-cli 26 20 27 - lint: 21 + lint & test: 28 22 image: codeberg.org/release-candidate/ci-system:edge 29 23 commands: 30 - - python3 -m pipenv run isort obs2org tests 31 - - python3 -m pipenv run black obs2org tests 32 - - python3 -m pipenv run pyflakes obs2org tests 33 - - python3 -m pipenv run pycodestyle obs2org tests 34 - - python3 -m pipenv run pydocstyle obs2org tests 35 - - python3 -m pipenv run flake8 obs2org tests 36 - - python3 -m pipenv run bandit -r obs2org tests 37 - - python3 -m pipenv run pylint --disable=no-member --disable=no-name-in-module obs2org tests 38 - 39 - test: 40 - image: codeberg.org/release-candidate/ci-system:edge 41 - commands: 42 - - python3 -m pipenv run pytest --hypothesis-show-statistics --cov=./ --cov-report=html 24 + - pip3 install --break-system-packages pipenv 25 + - pipenv install --dev 26 + - pipenv run black obs2org tests 27 + - pipenv run pyflakes obs2org tests 28 + - pipenv run pycodestyle obs2org tests 29 + - pipenv run pydocstyle obs2org tests 30 + - pipenv run flake8 obs2org tests 31 + - pipenv run bandit -r obs2org tests 32 + - pipenv run pylint --disable=no-member --disable=no-name-in-module obs2org tests 33 + - pipenv run pytest --hypothesis-show-statistics --cov=./ --cov-report=html 43 34 - ls -l