Skip to content

Instantly share code, notes, and snippets.

View frantic's full-sized avatar
👾

Alex Kotliarskyi frantic

👾
View GitHub Profile
@frantic
frantic / MyTests.dpr
Last active January 26, 2021 11:43
How to run DUnit tests as a part of your continuous integration process?
...
begin
Application.Initialize;
if IsConsole then
// You'll have to add rxbHaltOnFailures param hre
// (Delphi doesn't do it automatically)
with TextTestRunner.RunRegisteredTests(rxbHaltOnFailures) do
Free
else
" Be iMproved!
set nocompatible
" Setup Vundle
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'scrooloose/nerdtree'
@frantic
frantic / run_git_from_delphi.cmd
Created May 7, 2012 17:50
Run Git Gui from Delphi Tools menu
@echo off
cd %1
git gui