Skip to content

Commit 108d52b

Browse files
authoredFeb 22, 2025
Merge pull request #17 from EncoreTechnologies/hotfix/fix-ci-errors
hotfix/fix-ci-errors
2 parents 8030d7b + 78fe914 commit 108d52b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed
 

‎CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
# 1.0.2
4+
5+
* Updated files to work with latest CI updates
6+
37
# 1.0.1
48

59
* Fix duplicated "pack" key in rule definition.

‎pack.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords:
66
- sensu
77
- monitoring
88
- alerting
9-
version: 1.0.1
9+
version: 1.0.2
1010
python_versions:
1111
- "3"
1212
author : StackStorm, Inc.

‎tests/test_sensu_handler.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import mock
44
import requests
55
import responses
6-
import unittest2
6+
import unittest
77

88
# XXX: This file uses a lot of globals and shared state.
99
# We should definitely refactor this at some
@@ -30,7 +30,7 @@ def raise_for_status(self):
3030
raise Exception(self.reason)
3131

3232

33-
class SensuHandlerTestCase(unittest2.TestCase):
33+
class SensuHandlerTestCase(unittest.TestCase):
3434

3535
def test_st2_headers_token_auth(self):
3636
sensu_handler.IS_API_KEY_AUTH = False

0 commit comments

Comments
 (0)