(self)
| 146 | self.assertEqual(result, fileContents) |
| 147 | |
| 148 | def test_get_build_logs(self): |
| 149 | user = os.environ.get('ALGO_USER_NAME') |
| 150 | algo = "Echo" |
| 151 | |
| 152 | result = json.loads(CLI().getBuildLogs(user, algo, self.client)) |
| 153 | if "error" in result: |
| 154 | print(result) |
| 155 | self.assertTrue("error" not in result) |
| 156 | |
| 157 | # local to remote |
| 158 | def test_cp_L2R(self): |
nothing calls this directly
no test coverage detected