Skip to content

Commit

Permalink
Merge pull request #1 from intergral/mapr_builds
Browse files Browse the repository at this point in the history
chore(build): run actions on PR
  • Loading branch information
Umaaz committed Jun 22, 2023
2 parents 8fbb78a + fb255d1 commit f07f9f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/on_push.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Tests

on:
pull_request:
branches: [ "master" ]
push:
branches:
- master
Expand Down
2 changes: 1 addition & 1 deletion test/test_deep/config/test_config_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ def test_custom_attr_callable(self):
self.assertEqual(service.SOME_VALUE, 'thing')

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

0 comments on commit f07f9f9

Please sign in to comment.