File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 7474 python : 3.7
7575 script : ./scripts/build_package.sh
7676 - name : Snapcraft snap
77- stage : check # TODO: change to 'deploy' before merge
7877 addons :
7978 snaps :
8079 - name : snapcraft
Original file line number Diff line number Diff line change @@ -130,13 +130,10 @@ def __repr__(self):
130130
131131 @classmethod
132132 def find_root (cls , root = None ):
133- logger .info ("find_root" )
134- logger .info (root )
135133 if root is None :
136134 root = os .getcwd ()
137135 else :
138136 root = os .path .abspath (os .path .realpath (root ))
139- logger .info (root )
140137
141138 while True :
142139 dvc_dir = os .path .join (root , cls .DVC_DIR )
@@ -145,7 +142,6 @@ def find_root(cls, root=None):
145142 if os .path .ismount (root ):
146143 break
147144 root = os .path .dirname (root )
148- logger .info (root )
149145 raise NotDvcRepoError (root )
150146
151147 @classmethod
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ if [[ -n "$TRAVIS_TAG" ]]; then
2323 fi
2424fi
2525# ensure basic commands can run
26+ # N.B.: cannot run `dvc get` on travis (#2956)
2627dvc version
2728dvc.git status
2829dvc.git fetch --all
29- dvc get -v https://github.com/iterative/dvc scripts/innosetup/dvc.ico
3030sudo snap remove dvc
You can’t perform that action at this time.
0 commit comments