Skip to content

Commit

Permalink
Fix k5test minimum version requirement (#58)
Browse files Browse the repository at this point in the history
* Fix k5test minimum version requirement

The test function test_set_password fails when run with k5test 0.10.3.

```
TypeError: MITRealm.start_kadmind() missing 1 required positional argument: 'env'
```

This is because it is running the start_kadmind method with no
arguments, but the env argument didn't become optional until k5test
0.10.4.  That is now the new minimum version for this test dependency.

4cbfe7d
pythongssapi/k5test@aa9cf87

* Added reason to k5test min

---------

Co-authored-by: Jordan Borean <jborean93@gmail.com>
  • Loading branch information
carlwgeorge and jborean93 authored Oct 21, 2024
1 parent 0b9e404 commit de525b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
black==22.10.0
isort==5.10.1
k5test>=0.10.0
k5test>=0.10.4 # Needed for MITRealm.start_kadmind env default
mypy==0.982
pre-commit
pytest
tox
tox

0 comments on commit de525b7

Please # to comment.