shiika-lang / shiika

A statically-typed programming language
MIT License
223 stars 15 forks source link

Update .gitignore path /tests/data/hello.txt -> /tests/tmp/hello.txt #535

Closed yamakoud closed 8 months ago

yamakoud commented 8 months ago

What I Did: Update .gitignore path /tests/data/hello.txt -> /tests/tmp/hello.txt

Why: Some sk test write file to /tests/tmp/hello.txt but it's not properly ignored by gitignore Maybe tests/sk/file.sk produce file tests/tmp/hello.txt for every integration_test.

tests/sk/file.sk

# File.write
match File.write("tests/tmp/hello.txt", "hello")
when Ok(x)
  unless x == Void; puts "File.write returned \{x}"; end
when Fail(e)
  puts "File.write failed: #{e}"
end

...
yhara commented 8 months ago

👍

yamakoud commented 8 months ago

thx!