-
Notifications
You must be signed in to change notification settings - Fork 53
Test for checking files in repo #108
base: master
Are you sure you want to change the base?
Conversation
We have not been able to merge your Pull Request, but because you are awesome - we wanted to make sure you could still get a SendGrid Hacktoberfest shirt. Please go fill out our swag form before Nov 5th and we will send the shirt! (We know that you might have tried this before and it didn’t work, sorry about that!) You have till Nov 5th to fill out this form in order to get the Hacktoberfest shirt!Thank you for contributing during Hacktoberfest! We hope to see you in the repos soon! Just so you know, we always give away a SendGrid shirt for your first ever non-Hacktoberfest PR that gets merged. |
Hi,
I did fill the form before 5th NOV and I haven't received the swag yet as
it is mid of JAN. Please help me track my order .
Thank you,
Parth
…On Fri, Nov 3, 2017 at 7:13 AM, Elmer Thomas ***@***.***> wrote:
@parth-p <https://github.com/parth-p>
We have not been able to merge your Pull Request, but because you are
awesome - we wanted to make sure you could still get a SendGrid
Hacktoberfest shirt.
Please go *fill out our swag form <https://dx.sendgrid.com/swag> before
Nov 5th* and we will send the shirt! (We know that you might have tried
this before and it didn’t work, sorry about that!)
*You have till Nov 5th to fill out this form* in order to get the
Hacktoberfest shirt!
Thank you for contributing during Hacktoberfest! We hope to see you in the
repos soon! Just so you know, we always give away a SendGrid shirt for your
first ever non-Hacktoberfest PR that gets merged.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#108 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AbWG4P3SDXFrp_UzffurnKuaazobVyfBks5sym-4gaJpZM4QK7f3>
.
|
Hello @parth-p, You are on the list to receive swag, unfortunately shipments to India are taking longer than expected, but should arrive by the end of the month. Thanks for checking in! With Best Regards, Elmer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
# ./Docker or docker/Docker | ||
def test_docker_dir(self): | ||
self.assertEqual(True, os.path.isdir("./Dockerfile")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
|
||
# ./docker-compose.yml or ./docker/docker-compose.yml | ||
def test_docker_compose(self): | ||
self.assertEqual(True, os.path.isfile('docker-compose.yml')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
|
||
# ./.env_sample | ||
def test_env(self): | ||
self.assertEqual(True, os.path.isfile('./env_sample')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
|
||
# ./.gitignore | ||
def test_gitignore(self): | ||
self.assertEqual(True, os.path.isfile('./.gitignore')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
|
||
# ./.travis.yml | ||
def test_travis(self): | ||
self.assertEqual(True, os.path.isfile('./.travis.yml')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
|
||
# ./README.md | ||
def test_readme(self): | ||
self.assertEqual(True, os.path.isfile('./README.md')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
|
||
# ./TROUBLESHOOTING.md | ||
def test_troubleshooting(self): | ||
self.assertEqual(True, os.path.isfile('./TROUBLESHOOTING.md')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
|
||
# ./USAGE.md | ||
def test_usage(self): | ||
self.assertEqual(True, os.path.isfile('./USAGE.md')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
|
||
# ./USE_CASES.md | ||
def test_use_cases(self): | ||
self.assertEqual(True, os.path.isfile('./USE_CASES.md')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.assertTrue(...)
?
self.assertEqual(True, os.path.isfile('./USE_CASES.md')) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing 4 spaces of indentation
>>> import unittest
...
... if __name__ == '__main__':
... unittest.main()
File "<input>", line 4
unittest.main()
^
IndentationError: expected an indented block
Fixes #99
Closes #99
-->
Fixes
Added new test file for requirements
Checklist
Short description of what this PR does:
If you have questions, please send an email to Sendgrid, or file a Github Issue in this repository.