Browse Source

add test result files to gitignore

change .travis.yml indentation to 2 spaces (whoops)

remove whitespace
master
fivepiece 8 years ago
parent
commit
15433df28d
  1. 11
      .gitignore
  2. 24
      .travis.yml
  3. 2
      install.sh

11
.gitignore vendored

@ -9,4 +9,13 @@ htmlcov/
scripts/joinmarket.cfg scripts/joinmarket.cfg
scripts/cmttools/commitments.json scripts/cmttools/commitments.json
scripts/blacklist scripts/blacklist
alicekey
alicepubkey
bobkey
commitments_debug.txt
deps/
jmvenv/
logs/
miniircd/
nums_basepoints.txt
schedulefortesting

24
.travis.yml

@ -2,25 +2,19 @@ sudo: required
dist: trusty dist: trusty
language: python language: python
python: python:
- "2.7_with_system_site_packages" - "2.7_with_system_site_packages"
before_install: before_install:
- sudo apt-add-repository ppa:bitcoin/bitcoin -y - sudo apt-add-repository ppa:bitcoin/bitcoin -y
- sudo apt-get update -q - sudo apt-get update -q
- sudo apt-get install --no-install-recommends --no-upgrade -qq bitcoind - sudo apt-get install --no-install-recommends --no-upgrade -qq bitcoind
install: install:
- ./install.sh - ./install.sh
before_script: before_script:
- source jmvenv/bin/activate - source jmvenv/bin/activate
script: script:
- ./test/run_tests.sh - ./test/run_tests.sh
after_success: after_success:
- coveralls - coveralls
branches: branches:
only: only:
- test_travis - test_travis

2
install.sh

@ -298,7 +298,7 @@ main ()
Before executing scripts or tests, run: Before executing scripts or tests, run:
\`source jmvenv/bin/activate\` \`source jmvenv/bin/activate\`
from this directiry, to acticate virtualenv." from this directiry, to acticate virtualenv."
} }
main main

Loading…
Cancel
Save