summaryrefslogtreecommitdiff
path: root/tests/test_config
AgeCommit message (Collapse)Author
2025-12-27remove pkg_resources callsmainDaniel Schadt
This is mostly based on work by luhn. From a quick test with my pyramid project, it seems to work fine, but I haven't tested more complex setups. At least my template renderings and static files didn't break, and I checked a single asset override which also worked.
2025-08-24Update tests.Theron Luhn
2025-08-24Add `get_spec` to `PackageOverrides`Theron Luhn
2025-08-24Add `get_spec` to asset sources.Theron Luhn
2024-01-28upgrade phash implementation from md5 to sha256Michael Merickel
2022-03-13pyupgrade --py37-plusMichael Merickel
2022-03-12set target versions for blackMichael Merickel
2022-01-07make latest black happyMarcin Lulek
2021-02-17Write tests.Theron Luhn
2020-10-13Rename `ISecurityPolicy.authenticated_identity` to `identity`Theron Luhn
2020-07-12Run isort 5.x across code baseBert JW Regeer
2020-07-02add tests and docsÉric Araujo
2020-06-22first shot for #1602Éric Araujo
2020-05-07merge masterÉric Araujo
2020-05-06set() -> {}Bert JW Regeer
2020-05-06add test to validate doc assertionÉric Araujo
2020-05-04support multiple values for header predicateÉric Araujo
2020-05-04expand testing for predicate textsÉric Araujo
2020-04-17inheriting from `object` not necessary in py3Sergey Maranchuk
2019-12-27isortMichael Merickel
2019-12-24security policy docs and legacy policy improvementsMichael Merickel
- Added `set_security_policy`` to more places in the docs. - Ensure that the authn/authz policies are not used at all if the legacy policy is not in effect to avoid edge cases where the code would skip the security policy and use the authn/authz policy on accident. - Change deprecation warnings in code to reference the docs by name instead of by URL.
2019-12-23Merge branch 'master' into luhn-authenticated-useridMichael Merickel
2019-12-23add coverage tests for deprecation warningsMichael Merickel
2019-12-15Fix coverage.Theron Luhn
2019-12-15Revert "Bring back identity into permits."Theron Luhn
This reverts commit 2e06fa414412688dc3b7e0b422b0fc0b96ec882f.
2019-12-14Bring back identity into permits.Theron Luhn
2019-12-14Fix couple final view tests.Theron Luhn
2019-12-14Fix tests for `DummySecurityPolicy`.Theron Luhn
2019-12-04negotiate the best static asset using supported encodingsMichael Merickel
2019-10-17support Origin: null in csrf_trusted_origins and check_origin=FalseMichael Merickel
2019-10-17remove check_csrf view predicateMichael Merickel
2019-10-02define an IPredicateInfo instead of passing the full configurator to predicatesMichael Merickel
2019-10-02Merge pull request #3510 from mmerickel/scan-categoriesMichael Merickel
modify the default scan categories to be limited to only 'pyramid'
2019-09-30Merge pull request #3465 from luhn/security-policyMichael Merickel
Security policy implementation
2019-09-19Add allow_no_origin option to CSRF.Theron Luhn
2019-09-18modify the default scan categories to be limited to only 'pyramid'Michael Merickel
2019-03-09Implement new dummy security policy.Theron Luhn
2019-03-03Implement new request.has_permission.Theron Luhn
Deleted AuthorizationAPIMixin
2019-02-19Set legacy policy when using authn/authz policies.Theron Luhn
2019-02-17Implement setting ISecurityPolicy in the configurator.Theron Luhn
2018-11-14move text_, bytes_ and ascii_ to pyramid.util and remove native_Michael Merickel
2018-11-14rely on webob for request.path_info and request.schemeMichael Merickel
2018-11-14move is_unbound_method to pyramid.utilMichael Merickel
2018-11-12get rid of type aliasesMichael Merickel
2018-11-12initial work to remove py2 from the codebaseMichael Merickel
2018-11-11use inherit_slash=True on add_route to opt-in to no trailing slashMichael Merickel
2018-11-04Merge branch 'pr/1639' into bare-route-prefixMichael Merickel
2018-11-02remove deprecated media range support from add_view and add_routeMichael Merickel
2018-10-18fix coverageMichael Merickel
2018-10-18move predicate-related code into pyramid.config.predicatesMichael Merickel