def test_push_dirty_git(runner, monkeypatch):
with runner.isolated_filesystem():
os.mkdir('wandb')
# If the test was run from a directory containing .wandb, then __stage_dir__
# was '.wandb' when imported by api.py, reload to fix. UGH!
reload(wandb)
repo = git_repo()
open("foo.txt", "wb").close()
repo.repo.index.add(["foo.txt"])
monkeypatch.setattr(cli, 'api', wandb_api.Api({'project': 'test'}))
cli.api._settings['git_tag'] = True
result = runner.invoke(
cli.push, ["test", "foo.txt", "-p", "test", "-m", "Dirty"])
print(result.output)
print(result.exception)
print(traceback.print_tb(result.exc_info[2]))
assert result.exit_code == 1
assert "You have un-committed changes." in result.output
评论列表
文章目录