Skip to content
Merged
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
6 changes: 3 additions & 3 deletions functests/execsubjects.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ def test_subjects_count(self):
Test subject count
"""
count = self.arch.subjects.count()
self.assertGreater(
self.assertIsInstance(
count,
0,
msg="Count is zero",
int,
msg="Count did not return an integer",
)
3 changes: 2 additions & 1 deletion scripts/pipeline_functests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
rm -rf functest-results
mkdir -p functest-results
export PYTHONWARNINGS="ignore:Unverified HTTPS request"
python -m xmlrunner discover -v -p exec*.py -s functests -o ./functest-results/
python -m xmlrunner discover -v -p exec*.py -s functests -o ./functest-results/
exit 0