Skip to content

Commit 5552513

Browse files
committed
Fix up CI containers and stop using nose
Signed-off-by: Jordan Borean <[email protected]>
1 parent 5b4d405 commit 5552513

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
name:
1515
- debian-stable
1616
- debian-heimdal
17-
- centos-8
17+
- centos-stream-8
1818
- fedora-latest
1919
include:
2020
- name: debian-stable
2121
distro: debian:stable
2222
- name: debian-heimdal
2323
distro: debian:stable
2424
krb5_ver: heimdal
25-
- name: centos-8
26-
distro: centos:8
25+
- name: centos-stream-8
26+
distro: quay.io/centos/centos:stream8
2727
- name: fedora-latest
2828
distro: fedora:latest
2929
flake: 'yes'

README.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ To compile from scratch, you will need Cython >= 0.21.1.
4848
For Running the Tests
4949
---------------------
5050

51-
* the `nose` package
52-
5351
* the `k5test` package
5452

5553
To install test dependencies using pip:

ci/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ if [ "$OS_NAME" = "windows" ]; then
4040
# Windows can't run the tests yet, so just make sure it imports and exit
4141
python -c "import gssapi" || exit $?
4242
else
43-
python setup.py nosetests --verbosity=3 || exit $?
43+
python -m unittest -v || exit $?
4444
fi

test-requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
flake8
2-
nose
32
parameterized
43
Cython
54
k5test

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ envlist = py36,py37,py38
1010
whitelist_externals=bash
1111
commands =
1212
bash -c "source ./.travis/lib-verify.sh && verify::flake8"
13-
python setup.py nosetests []
13+
python -m unittest
1414

1515
deps = -r{toxinidir}/test-requirements.txt

0 commit comments

Comments
 (0)