2011-02-01から1ヶ月間の記事一覧

Hudson in ubuntu10

インスコ wget -O - http://hudson-ci.org/debian/hudson-ci.org.key | sudo apt-key add - vi /etc/apt/sources.list ----- : : deb http://hudson-ci.org/debian binary/ ----- sudo apt-get update sudo apt-get install hudson → デーモン起動してくれる…

ポートを使用しているプロセス調べる in ubuntu

!!! root で実行しないとプロセス名が表示されないので気をつける # netstat -A inet -npl Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 31…

Django + nose + selenium in ubuntu で自動テスト環境を整える

環境 Python2.6 + Django1.2 + Ubuntu10 など 使うもの nose Pythonのunittestをもっと簡単にできるように拡張したもの。プラグインなど簡単に作成する事ができ拡張性も高い http://somethingaboutorange.com/mrl/projects/nose/1.0.0/ django-nose-selenium…