The directory "tests/buildDir/" where the build artifacts from the "compilation without warnings" unit test execution are being written is added to the .gitignore file. Related to #680
41 lines
630 B
Text
41 lines
630 B
Text
# Any path
|
|
*.swp
|
|
*~
|
|
nimcache/
|
|
|
|
# Absolute paths
|
|
/src/babel
|
|
/src/nimble
|
|
/tests/tester
|
|
|
|
# executables from test and build
|
|
/nimble
|
|
/tests/nimscript/nimscript
|
|
/tests/issue27/issue27
|
|
src/nimblepkg/cli
|
|
src/nimblepkg/packageinfo
|
|
src/nimblepkg/packageparser
|
|
src/nimblepkg/reversedeps
|
|
src/nimblepkg/version
|
|
tests/nimble-test/
|
|
tests/packageStructure/validBinary/y
|
|
tests/testCommand/testsFail/tests/t2
|
|
|
|
# Windows executables
|
|
*.exe
|
|
*.dll
|
|
|
|
# VCC compiler and linker artifacts
|
|
*.ilk
|
|
*.pdb
|
|
|
|
# Editors and IDEs project files and folders
|
|
.vscode
|
|
|
|
# VCS artifacts
|
|
*.orig
|
|
|
|
# Test procedure artifacts
|
|
tests/nimble-test/
|
|
tests/buildDir/
|
|
nimble_*.nims
|