We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fbb78a + fb255d1 commit f07f9f9Copy full SHA for f07f9f9
2 files changed
.github/workflows/on_push.yaml
@@ -1,6 +1,8 @@
1
name: Tests
2
3
on:
4
+ pull_request:
5
+ branches: [ "master" ]
6
push:
7
branches:
8
- master
test/test_deep/config/test_config_service.py
@@ -25,6 +25,6 @@ def test_custom_attr_callable(self):
25
self.assertEqual(service.SOME_VALUE, 'thing')
26
27
def test_env_attr(self):
28
- items_ = os.environ.get('PATH')
+ items_ = os.environ.setdefault("DEEP_PATH", "a thing")
29
service = ConfigService({})
30
self.assertEqual(service.PATH, items_)
0 commit comments