Running:
#!/bin/bash
rm -rf repo
mkdir repo
pushd repo
git init --quiet
dvc init --quiet
echo "{'metric':0.95}" >> metric.json
git add -A
git commit -am "initial"
git tag v1
echo "{'metric':0.96}" >> metric.json
git add -A
git commit -am "second"
git tag v2
dvc metrics diff v1 v2 -v --targets metric.json
yields no result. metrics diff/show should be able to handle non-metrics targets that can be interpreted by our parsers.
Running:
yields no result.
metrics diff/showshould be able to handle non-metricstargets that can be interpreted by our parsers.