Skip to content

Commit f07f9f9

Browse files
authored
Merge pull request #1 from intergral/mapr_builds
chore(build): run actions on PR
2 parents 8fbb78a + fb255d1 commit f07f9f9

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/on_push.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Tests
22

33
on:
4+
pull_request:
5+
branches: [ "master" ]
46
push:
57
branches:
68
- master

test/test_deep/config/test_config_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ def test_custom_attr_callable(self):
2525
self.assertEqual(service.SOME_VALUE, 'thing')
2626

2727
def test_env_attr(self):
28-
items_ = os.environ.get('PATH')
28+
items_ = os.environ.setdefault("DEEP_PATH", "a thing")
2929
service = ConfigService({})
3030
self.assertEqual(service.PATH, items_)

0 commit comments

Comments
 (0)