commit 6eaf4e2c53f4038e2faf7b52d118edea4b88dd4a Author: Aurelien Vaillant Date: Mon Jan 24 15:20:00 2022 +0100 Add basic files - git ignore rules - releases folders - unit test setup - readme file - pycharm execute unit test diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..58781b5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +### PyCharm ### +.idea/ + +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +**/__pycache__/ + + +# Unit Test # +*.zip +tests/blender/** +tests/blender/*.dmg +!tests/blender/.keep + +### Blender ### +*.blend1 + +### Unreal ### +tests/unreal_sample/DerivedDataCache +tests/unreal_sample/Intermediate +tests/unreal_sample/Saved + +# Secret file +**/token.txt + +# Virtual Environment +tests/venv +venv/ \ No newline at end of file diff --git a/.run/Launch Unit Test.run.xml b/.run/Launch Unit Test.run.xml new file mode 100644 index 0000000..6cdf709 --- /dev/null +++ b/.run/Launch Unit Test.run.xml @@ -0,0 +1,24 @@ + + + + + \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..e4fdd76 --- /dev/null +++ b/readme.md @@ -0,0 +1,2 @@ +# Blender Addon +Template repository about blender addon. \ No newline at end of file diff --git a/releases/.keep b/releases/.keep new file mode 100644 index 0000000..e69de29 diff --git a/tests/requirements.txt b/tests/requirements.txt new file mode 100644 index 0000000..36011d0 --- /dev/null +++ b/tests/requirements.txt @@ -0,0 +1,2 @@ +docker +PyGithub \ No newline at end of file