Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating branch #223

Merged
merged 43 commits into from
Nov 15, 2023
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
8c97085
improve deploy logic - separate dev and prod part 1
DireLines Nov 10, 2023
6ed7f06
reversed branches
DireLines Nov 10, 2023
2b2a7f5
helpers needed for redeploy
DireLines Nov 10, 2023
4146d1e
bug fixes for redeploy
DireLines Nov 10, 2023
47a7c1e
Merge pull request #219 from DireLines/main
justinmerrell Nov 12, 2023
d88a8f1
fix: linting
justinmerrell Nov 12, 2023
63494e0
Update functions.py
justinmerrell Nov 12, 2023
d417e53
Update functions.py
justinmerrell Nov 12, 2023
7b5e714
Update functions.py
justinmerrell Nov 12, 2023
b6fdb38
Update functions.py
justinmerrell Nov 12, 2023
27ede5d
Update test_project_functions.py
justinmerrell Nov 12, 2023
a6d2be5
fix: listing and tests
justinmerrell Nov 12, 2023
5ab5944
fix: tests and linting
justinmerrell Nov 12, 2023
6210655
Update functions.py
justinmerrell Nov 12, 2023
f0ed7b7
Update test_project_functions.py
justinmerrell Nov 12, 2023
1459127
Update test_project_functions.py
justinmerrell Nov 12, 2023
72450b8
Update test_project_functions.py
justinmerrell Nov 12, 2023
76c2f67
Update test_project_functions.py
justinmerrell Nov 13, 2023
0e1a029
Update test_project_functions.py
justinmerrell Nov 13, 2023
a1de81e
fix: add missing tests
justinmerrell Nov 13, 2023
04faade
fix: missing coverage
justinmerrell Nov 13, 2023
c99e408
Update test_project_functions.py
justinmerrell Nov 13, 2023
ee663e2
fix: tests
justinmerrell Nov 13, 2023
703e952
Update test_project_functions.py
justinmerrell Nov 13, 2023
1f062e2
Update test_project_functions.py
justinmerrell Nov 13, 2023
045fef5
Update test_project_functions.py
justinmerrell Nov 13, 2023
20b8136
Update functions.py
justinmerrell Nov 13, 2023
7a95891
Update test_project_functions.py
justinmerrell Nov 13, 2023
f923183
Update test_project_functions.py
justinmerrell Nov 13, 2023
195852c
fix: tests
justinmerrell Nov 13, 2023
a73c21e
fix: tests
justinmerrell Nov 13, 2023
fc2f7bd
Update test_project_functions.py
justinmerrell Nov 13, 2023
70bdf37
Update test_project_functions.py
justinmerrell Nov 13, 2023
69fe168
Merge pull request #220 from runpod/enhanced-deploy
justinmerrell Nov 13, 2023
f45825a
feat: create json logs
justinmerrell Nov 14, 2023
68c5695
fix: log format
justinmerrell Nov 14, 2023
52b0ace
fix: log formatting
justinmerrell Nov 14, 2023
fea875f
fix: format more logs
justinmerrell Nov 14, 2023
513c1c7
Update rp_job.py
justinmerrell Nov 14, 2023
b6039a5
Update rp_job.py
justinmerrell Nov 14, 2023
c22b4c8
Merge pull request #221 from runpod/json-logs
justinmerrell Nov 14, 2023
4b9170c
Update CHANGELOG.md
justinmerrell Nov 14, 2023
3d78e39
Merge pull request #222 from runpod/1.3.4-Update
justinmerrell Nov 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test_project_functions.py
  • Loading branch information
justinmerrell committed Nov 13, 2023
commit 70bdf3766b88884f7e6e9eba641ba8642a61f001
2 changes: 1 addition & 1 deletion tests/test_cli/test_cli_groups/test_project_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class TestCreateProjectEndpoint(unittest.TestCase):
@patch('runpod.cli.groups.project.functions.update_endpoint_template')
@patch('runpod.cli.groups.project.functions.get_project_pod')
@patch('runpod.cli.groups.project.functions.get_project_endpoint')
def test_create_project_endpoint(self, mock_get_project_endpoint, mock_get_project_pod, mock_create_endpoint, mock_update_endpoint, # pylint: disable=too-many-arguments,line-too-long
def test_create_project_endpoint(self, mock_get_project_endpoint, mock_get_project_pod, mock_update_endpoint, mock_create_endpoint, # pylint: disable=too-many-arguments,line-too-long
mock_create_template, mock_load_project_config, mock_ssh_connection): # pylint: disable=line-too-long
""" Test that a project endpoint is created successfully. """
mock_get_project_endpoint.return_value = False
Expand Down