Ver código fonte

Added testrunner as a submodule (getting sick of import errors)

Taddeus Kroes 13 anos atrás
pai
commit
7907624e04
3 arquivos alterados com 5 adições e 1 exclusões
  1. 3 0
      .gitmodules
  2. 1 0
      external/testrunner
  3. 1 1
      test.py

+ 3 - 0
.gitmodules

@@ -13,3 +13,6 @@
 [submodule "external/codemirror2"]
 	path = external/codemirror2
 	url = http://marijnhaverbeke.nl/git/codemirror2
+[submodule "external/testrunner"]
+	path = external/testrunner
+	url = git@kompiler.org:python/testrunner

+ 1 - 0
external/testrunner

@@ -0,0 +1 @@
+Subproject commit 39804c23b6c4bc9da23767d825e45e4512917ddf

+ 1 - 1
test.py

@@ -13,6 +13,6 @@
 #
 # You should have received a copy of the GNU Affero General Public License
 # along with TRS.  If not, see <http://www.gnu.org/licenses/>.
-from testrunner import main
+from external.testrunner import main
 import sys
 main(sys.argv[1:])