Skip to content

Commit

Permalink
Fix obsolete tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MKuranowski committed Jul 13, 2024
1 parent a09fcec commit f1c4d29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 117 deletions.
7 changes: 4 additions & 3 deletions tests/test_live.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pyroutelib3
import shutil
import os
import shutil

import pyroutelib3


def test_live():
Expand Down Expand Up @@ -34,7 +35,7 @@ def test_live():

# Count up the number of tiles
count = 0
for (_, _, fnames) in os.walk("tilescache"):
for _, _, fnames in os.walk("tilescache"):
for f in fnames:
if f == "data.osm":
count += 1
Expand Down
114 changes: 0 additions & 114 deletions tests/test_router.py

This file was deleted.

0 comments on commit f1c4d29

Please sign in to comment.