Skip to content

Commit

Permalink
Merge pull request #252 from ItsCalebJones/bump_ll
Browse files Browse the repository at this point in the history
chore: bump LL version
  • Loading branch information
ItsCalebJones authored Jul 29, 2024
2 parents 770d22a + e042164 commit 6114298
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
14 changes: 7 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sorl-thumbnail-serializer-field = "==0.2.1"
python-semantic-release = "7.34.6"
twitter = "==1.18.0"
tzlocal = "==4.2"
django-launch-library = {version = "^19.3.0", source = "tsd"}
django-launch-library = {version = "^19.3.1", source = "tsd"}
environs = "^9.5.0"
django-jet-reboot = "^1.3.3"
pymemcache = "^4.0.0"
Expand Down
8 changes: 8 additions & 0 deletions src/bot/tests/test_sln_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,18 @@ def test_launch_pages(self):
response = self.client.get(path)
self.assertEqual(response.status_code, status.HTTP_200_OK)

path = "/launch/upcoming/?mode=detailed"
response = self.client.get(path)
self.assertEqual(response.status_code, status.HTTP_200_OK)

path = "/launch/previous/"
response = self.client.get(path)
self.assertEqual(response.status_code, status.HTTP_200_OK)

path = "/launch/previous/?mode=detailed"
response = self.client.get(path)
self.assertEqual(response.status_code, status.HTTP_200_OK)

def test_launch_slugs(self):
launches = Launch.objects.all().order_by("-net")
for launch in launches:
Expand Down

0 comments on commit 6114298

Please sign in to comment.