Skip to content

Commit 2de2a72

Browse files
authored
Merge pull request #38 from HDE/various-updates
Update copyright year and run test on wercker
2 parents a9693f0 + abf7813 commit 2de2a72

File tree

10 files changed

+19
-9
lines changed

10 files changed

+19
-9
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2017 HDE, Inc.
3+
Copyright (c) 2015-2018 HDE, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Run lambda function on local machine
88

99
## Prepare development environment
1010

11-
Please use a newly created virtualenv of Python 2.7 or Python 3.6 .
11+
Please use a newly created virtualenv of Python 2.7 or Python 3.6.
1212

1313
## Installation
1414

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Run lambda function on local machine
99
Prepare development environment
1010
-------------------------------
1111

12-
Please use a newly created virtualenv of Python 2.7 or Python 3.6 .
12+
Please use a newly created virtualenv of Python 2.7 or Python 3.6.
1313

1414
Installation
1515
------------

lambda_local/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'''
22
python-lambda-local: Main module
33
4-
Copyright 2015-2017 HDE, Inc.
4+
Copyright 2015-2018 HDE, Inc.
55
Licensed under MIT.
66
'''
77

lambda_local/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2017 HDE, Inc.
2+
Copyright 2015-2018 HDE, Inc.
33
Licensed under MIT.
44
'''
55

lambda_local/event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2017 HDE, Inc.
2+
Copyright 2015-2018 HDE, Inc.
33
Licensed under MIT.
44
'''
55

lambda_local/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2017 HDE, Inc.
2+
Copyright 2015-2018 HDE, Inc.
33
Licensed under MIT.
44
'''
55

lambda_local/timeout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'''
2-
Copyright 2015-2017 HDE, Inc.
2+
Copyright 2015-2018 HDE, Inc.
33
Licensed under MIT.
44
'''
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'''
22
python-lambda-local: Run lambda function in python on local machine.
33
4-
Copyright 2015-2017 HDE, Inc.
4+
Copyright 2015-2018 HDE, Inc.
55
Licensed under MIT.
66
'''
77
import io

wercker.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ build-py2:
2626
code: |
2727
python setup.py sdist bdist_wheel
2828
29+
- script:
30+
name: test
31+
code: |
32+
python setup.py test
33+
2934
build-py3:
3035
box: python:3.6-slim
3136
steps:
@@ -49,6 +54,11 @@ build-py3:
4954
code: |
5055
python setup.py sdist bdist_wheel
5156
57+
- script:
58+
name: test
59+
code: |
60+
python setup.py test
61+
5262
deploy:
5363
pypi:
5464
- script:

0 commit comments

Comments
 (0)