1
0
mirror of https://github.com/tiyn/yeschess.git synced 2025-04-01 14:47:44 +02:00

tests: created tests dir

The tests where cluttering the src dir
so i moved them to a separate dir.
Same goes for the binaries so i changed the
outputdirectory for them and
added these to the new gitignore file
This commit is contained in:
TiynGER 2021-05-15 00:46:35 +02:00
parent 2d021366cb
commit c6ecdd4c83
4 changed files with 8 additions and 3 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
bin
docs
secret.nim

View File

@ -1,7 +1,7 @@
import einheit
import algorithm
include ./chess.nim
include chess
testSuite ChessTest of TestSuite:

View File

@ -1,7 +1,7 @@
import einheit
include ./chess.nim
include ./engine.nim
include chess
include engine
testSuite ChessTest of TestSuite:

2
tests/nim.cfg Normal file
View File

@ -0,0 +1,2 @@
--path:"../src/"
--outdir:"../bin/tests/"