diff --git a/.travis.yml b/.travis.yml index 2daf098..727ac31 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,6 @@ -language: ruby -install: - - sudo apt-get update - - sudo apt-get install puppet - - puppet module install puppetlabs-apt - - puppet apply assets/puppet/site.pp - - bundle +language: csharp +solution: Untappd.Net.sln script: - - bundle exec rake preflight -notifications: - email: - - tparnell8@gmail.com -gemfile: Gemfile + - xbuild /p:Configuration=Release Untappd.Net.sln + - mono ./packages/NUnit.Runners.*/tools/nunit-console.exe ./src/*Tests/bin/Release/*Tests.dll +sudo:false diff --git a/Rakefile b/Rakefile index 466d753..22b9648 100644 --- a/Rakefile +++ b/Rakefile @@ -32,10 +32,6 @@ build :compile => ['tools:nuget_fetch'] do |b| b.sln = 'Untappd.Net.sln' end -task :tp do - puts NUNIT -end - test_runner :nunit do |tests| tests.files = FileList["src/**/*UnitTests/bin/#{Configuration}/*UnitTests.dll"] # dll files with test tests.exe = "packages/NUnit.Runners.2.6.4/tools/nunit-console.exe" # executable to run tests with