You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Zykino 322fd13b41 Rework to update the correctautoupload file 3 years ago
.gitignore First commit with early library 3 years ago
README.md Add instruction for pre-commit hook 3 years ago
autoupload.py Rework to update the correctautoupload file 3 years ago
test_autoupload.py Rework to update the correctautoupload file 3 years ago

README.md

Prismedia AutoUpload

This the implementation for the file handling of prismedia's autoupload feature.

It consist of one file: autoupload.py. There is also a test file as autoupload_test.py which can be helpfull has to how to use this object.

I am not a python expert and everything may change when integrating this project in Prismedia: function/variable name/case, interface, ...

Dependencies

pip3 install toml

Tests

Since there is no tests done for Prismedia, I choose unittest to do tests for this lib since it is present in the python standard library.

Launch tests with

python3 -m unittest

git hook

To start tests automatically you can create a pre-commit file in .git/hooks/ with the following content:

#!/usr/bin/env bash

# run tests
python3 -m unittest discover . --failfast
# unittest exists with 0 if all tests passed, 1 otherwise.
tests_failed=$?
if [ ${tests_failed} -eq 1 ]; then
	echo "Tests failed. Aborting commit"
	exit 1
fi

exit 0

The hook should have execution right, chmod 775 .git/hooks/pre-commit.

Maybe we can use the example here https://gist.github.com/orenshk/6cab23fcff847d704af7f3eec22b1ba6 as pre-commit hook to also format according to PEP8.