We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415a666 commit 967471bCopy full SHA for 967471b
.github/workflows/python.yml
@@ -29,10 +29,10 @@ jobs:
29
runs-on: ubuntu-latest
30
steps:
31
- uses: actions/checkout@v3
32
- - name: Set up Python 3.9
+ - name: Set up Python 3.10
33
uses: actions/setup-python@v3
34
with:
35
- python-version: 3.9
+ python-version: '3.10'
36
# flake8 version should be same as the version in requirements/test.txt
37
# to avoid lint errors on CI
38
- name: pip install flak8
tests/base.py
@@ -20,10 +20,6 @@
20
from optimizely import optimizely
21
22
23
-def long(a):
24
- raise NotImplementedError('Tests should only call `long` if running in PY2')
25
-
26
27
class BaseTest(unittest.TestCase):
28
def assertStrictTrue(self, to_assert):
self.assertIs(to_assert, True)
0 commit comments