Method: DeltaTest::CLI::StatsSaveCommand#sync_table_file

Defined in:
lib/delta_test/cli/stats_save_command.rb

#sync_table_fileObject



43
44
45
46
47
48
49
# File 'lib/delta_test/cli/stats_save_command.rb', line 43

def sync_table_file
  return unless stats.stats_git.has_remote?
  status = true
  status &&= stats.stats_git.pull
  status &&= stats.stats_git.push
  raise StatsRepositorySyncError unless status
end