- Switch from unittest to pytest (test_gears.py, xfail for OCC helical extrusion) - Add visual regression tests (freecad.visual_tests): test_visual_projects.py, projekt_001 - Pixi: test/test-visual/test-visual-xvfb/create-references/clean-test, create-references-xvfb - GitHub: Pylint workflow on push, pull_request, workflow_dispatch; visual tests on Linux (xvfb) - GitHub: Update reference images workflow (workflow_dispatch) - setup-pixi v0.9.4, pixi v0.44.0, checkout v4 - .gitignore: artifacts/, .pytest_exitstatus Co-authored-by: Cursor <cursoragent@cursor.com>
72 lines
913 B
Plaintext
72 lines
913 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
env/
|
|
build*/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# PyInstaller
|
|
# Usually these files are written by a python script from a template
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
|
|
# Visual test artifacts (references are versioned)
|
|
tests/data/*/artifacts/
|
|
|
|
# Pytest exit status (used by xvfb wrapper)
|
|
.pytest_exitstatus
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
#custom
|
|
*.kdev4
|
|
*.lyx~
|
|
.ipynb_checkpoints/
|
|
results/
|
|
*.vtk
|
|
|
|
# pixi environments
|
|
.pixi
|
|
*.egg-info
|