diff --git a/.gitignore b/.gitignore new file mode 100755 index 00000000..c2d88771 --- /dev/null +++ b/.gitignore @@ -0,0 +1,60 @@ +# 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 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):