From 74295118b246c1a333676ebf718e4d3869c99e10 Mon Sep 17 00:00:00 2001 From: "Stanislas H.B. Sodonon" Date: Sun, 23 Feb 2025 10:39:46 -0500 Subject: [PATCH 1/3] Update test_payslip_flow.py Fix import --- om_hr_payroll/tests/test_payslip_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/om_hr_payroll/tests/test_payslip_flow.py b/om_hr_payroll/tests/test_payslip_flow.py index 7233039f..afaf6a58 100644 --- a/om_hr_payroll/tests/test_payslip_flow.py +++ b/om_hr_payroll/tests/test_payslip_flow.py @@ -4,7 +4,7 @@ import os from odoo.tools import config, test_reports -from odoo.addons.om_om_hr_payroll.tests.common import TestPayslipBase +from .common import TestPayslipBase class TestPayslipFlow(TestPayslipBase): From 1db5601046957d43e4cbadb704bcb5c391e67864 Mon Sep 17 00:00:00 2001 From: Stanislas Sodonon Date: Sun, 2 Mar 2025 14:13:54 -0500 Subject: [PATCH 2/3] chore: add ignore --- .gitignore | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100755 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100755 index 00000000..64fac915 --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + + + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +node_modules + + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# IDE +.vscode/ +.idea/ + +# Miscellaneous +var/ +.DS_Store +legacy +openeducat_erp +pyrightconfig.json From d88ee02024b5c0a41c44f42ab6ae65b809386d5f Mon Sep 17 00:00:00 2001 From: Stanislas Sodonon Date: Sun, 2 Mar 2025 14:36:46 -0500 Subject: [PATCH 3/3] chore: update gitignore --- .gitignore | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.gitignore b/.gitignore index 64fac915..c2d88771 100755 --- a/.gitignore +++ b/.gitignore @@ -6,8 +6,6 @@ __pycache__/ # C extensions *.so - - # Installer logs pip-log.txt pip-delete-this-directory.txt @@ -60,6 +58,3 @@ dmypy.json # Miscellaneous var/ .DS_Store -legacy -openeducat_erp -pyrightconfig.json