Skip to content

Commit e45f7bd

Browse files
Debugging Travis Tests
1 parent 2476c2e commit e45f7bd

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ print(response.response_headers)
6969
# Usage
7070

7171
- [SendGrid Docs](https://sendgrid.com/docs/API_Reference/index.html)
72-
- [v3 Web API](https://github.com/sendgrid/sendgrid-python/blob/master/USAGE.md)
73-
- [Example Code](https://github.com/sendgrid/sendgrid-python/blob/master/examples)
74-
- [v3 Web API Mail Send Helper]()
72+
- [v3 Web API](https://github.com/sendgrid/sendgrid-python/tree/v3beta/USAGE.md)
73+
- [Example Code](https://github.com/sendgrid/sendgrid-python/tree/v3beta/examples)
74+
- [v3 Web API Mail Send Helper](https://github.com/sendgrid/sendgrid-python/tree/v3beta/sendgrid/helpers/mail)
7575

7676
# Announcements
7777

@@ -83,9 +83,9 @@ have the following resources to get you started quickly:
8383
- [SendGrid
8484
Documentation](https://sendgrid.com/docs/API_Reference/Web_API_v3/index.html)
8585
- [Usage
86-
Documentation](https://github.com/sendgrid/sendgrid-python/blob/master/USAGE.md)
86+
Documentation](https://github.com/sendgrid/sendgrid-python/tree/v3beta/USAGE.md)
8787
- [Example
88-
Code](https://github.com/sendgrid/sendgrid-python/blob/master/examples)
88+
Code](https://github.com/sendgrid/sendgrid-python/tree/v3beta/examples)
8989

9090
Thank you for your continued support!
9191

@@ -95,11 +95,11 @@ Thank you for your continued support!
9595

9696
## How to Contribute
9797

98-
We encourage contribution to our libraries, please see our [CONTRIBUTING](https://github.com/sendgrid/sendgrid-python/blob/master/CONTRIBUTING.md) guide for details.
98+
We encourage contribution to our libraries, please see our [CONTRIBUTING](https://github.com/sendgrid/sendgrid-python/tree/v3beta/CONTRIBUTING.md) guide for details.
9999

100-
* [Feature Request](https://github.com/sendgrid/sendgrid-python/blob/master/CONTRIBUTING.md#feature_request)
101-
* [Bug Reports](https://github.com/sendgrid/sendgrid-python/blob/master/CONTRIBUTING.md#submit_a_bug_report)
102-
* [Improvements to the Codebase](https://github.com/sendgrid/sendgrid-python/blob/master/CONTRIBUTING.md#improvements_to_the_codebase)
100+
* [Feature Request](https://github.com/sendgrid/sendgrid-python/tree/v3beta/CONTRIBUTING.md#feature_request)
101+
* [Bug Reports](https://github.com/sendgrid/sendgrid-python/tree/v3beta/CONTRIBUTING.md#submit_a_bug_report)
102+
* [Improvements to the Codebase](https://github.com/sendgrid/sendgrid-python/tree/v3beta/CONTRIBUTING.md#improvements_to_the_codebase)
103103

104104
## Unsupported Libraries
105105

sendgrid/helpers/mail/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Quick Start
44

5-
Run the [example]() (make sure you have set your environment variable to include your SENDGRID_API_KEY).
5+
Run the [example](https://github.com/sendgrid/sendgrid-python/tree/v3beta/examples/helpers/mail) (make sure you have set your environment variable to include your SENDGRID_API_KEY).
66

77
```bash
88
cp examples/helpers/mail_settings.py .

test/test_mail.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
class UnitTests(unittest.TestCase):
1212

1313
def test_helloEmail(self):
14+
self.maxDiff = None
15+
1416
"""Minimum required to send an email"""
1517
mail = Mail()
1618

@@ -25,7 +27,7 @@ def test_helloEmail(self):
2527
mail.add_content(Content("text/plain", "some text here"))
2628
mail.add_content(Content("text/html", "<html><body>some text here</body></html>"))
2729

28-
self.assertEqual(json.dumps(mail.get(), sort_keys=True), '{"content": [{"type": "text/plain", "value": "some text here"}, {"type": "text/html", "value": "<html><body>some text here</body></html>"}], "from": {"email": "[email protected]"}, "personalization": [{"to": [{"email": "[email protected]"}]}], "subject": "Hello World from the SendGrid Python Library"}')
30+
self.assertEqual(json.dumps(mail.get(), sort_keys=True), '{"content": [{"type": "text/plain", "value": "some text here"}, {"type": "text/html", "value": "<html><body>some text here</body></html>"}], "from": {"email": "[email protected]"}, "personalizations": [{"to": [{"email": "[email protected]"}]}], "subject": "Hello World from the SendGrid Python Library"}')
2931

3032
def test_kitchenSink(self):
3133
self.maxDiff = None

0 commit comments

Comments
 (0)