use new test modules (without scanchain) for verification
diff --git a/configure.py b/configure.py
index d032269..73b3b9b 100755
--- a/configure.py
+++ b/configure.py
@@ -194,8 +194,12 @@
             artifacts = [a for a in data['artifacts'] if a['name'] == 'GDS']
             logging.debug("found {} artifacts".format(len(artifacts)))
 
+        if len(artifacts) == 0:
+            logging.error("no artifacts for this project")
+            exit(1)
+
         download_url = Projects.get_most_recent_action_url(commits, artifacts)
-        logging.debug(download_url)
+        logging.debug("download url {}".format(download_url))
 
         # need actions access on the token to get the artifact
         # won't work on a pull request because they won't have the token
diff --git a/project_urls_test.py b/project_urls_test.py
index 87c72db..77f1917 100644
--- a/project_urls_test.py
+++ b/project_urls_test.py
@@ -1,5 +1,5 @@
-filler_project_url = 'https://github.com/mattvenn/tinytapeout-test-invert'
+filler_project_url = 'https://github.com/TinyTapeout/tt02-test-straight'
 project_urls = [
-#    'https://github.com/mattvenn/tinytapeout-7seg-seconds-counter',
-#    'https://github.com/mattvenn/tinytapeout-test-invert',
+    'https://github.com/TinyTapeout/tt02-test-7seg',
+    'https://github.com/TinyTapeout/tt02-test-invert',
     ]