Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion phpipam-ansible-modules
2 changes: 1 addition & 1 deletion phpypam
Submodule phpypam updated 51 files
+1 −1 .bumpversion.cfg
+1 −0 .codacy.yml
+31 −21 .github/workflows/main.yml
+32 −0 .github/workflows/stale.yml
+3 −0 .gitignore
+35 −0 .readthedocs.yaml
+0 −9 .vscode/settings.json
+24 −2 CHANGELOG.md
+133 −0 CODE_OF_CONDUCT.md
+22 −12 Makefile
+162 −4 README.md
+1 −1 docs/conf.py
+1 −1 docs/requirements.txt
+13 −11 phpypam/core/exceptions.py
+1 −3 requirements-dev.txt
+1 −1 requirements.txt
+2 −2 setup.py
+2 −71 tests/conftest.py
+22 −0 tests/docker/docker-compose.yml
+51 −0 tests/docker/setup_database.sh
+0 −103 tests/fixtures/test_address_not_found.yml
+0 −100 tests/fixtures/test_connection_failure.yml
+0 −54 tests/fixtures/test_connection_success.yml
+0 −108 tests/fixtures/test_controllers.yml
+0 −156 tests/fixtures/test_create_nameserver.yml
+0 −157 tests/fixtures/test_create_section.yml
+0 −156 tests/fixtures/test_create_vlan.yml
+0 −54 tests/fixtures/test_custom_user_agent.yml
+0 −152 tests/fixtures/test_delete_nameserver.yml
+0 −154 tests/fixtures/test_delete_section.yml
+0 −152 tests/fixtures/test_delete_vlan.yml
+0 −100 tests/fixtures/test_invalid_credentials_exception.yml
+0 −51 tests/fixtures/test_invalid_syntax_exception.yml
+0 −54 tests/fixtures/test_search_existing_section.yml
+0 −51 tests/fixtures/test_search_not_existing_section.yml
+0 −103 tests/fixtures/test_subnet_not_found.yml
+0 −155 tests/fixtures/test_update_nameserver.yml
+0 −158 tests/fixtures/test_update_section.yml
+0 −155 tests/fixtures/test_update_vlan.yml
+4 −29 tests/test_cases/api_connection.py
+0 −8 tests/test_cases/controllers.py
+0 −17 tests/test_cases/ensure_nameserver.py
+0 −17 tests/test_cases/ensure_section.py
+0 −17 tests/test_cases/ensure_vlan.py
+40 −30 tests/test_cases/force_exceptions.py
+0 −7 tests/test_cases/search_address.py
+29 −0 tests/test_cases/search_exceptions.py
+0 −12 tests/test_cases/search_section_by_name.py
+0 −7 tests/test_cases/search_subnet.py
+21 −0 tests/vars/search_exceptions.yml
+1 −0 tests/vars/server.yml.example