-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #252 from giovannipizzi/release_3.0
Release v3.0.0
- Loading branch information
Showing
928 changed files
with
889,877 additions
and
259,784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "30...100" | ||
status: | ||
project: | ||
default: | ||
target: 60% | ||
threshold: 0.5% | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
test-suite/* linguist-vendored | ||
# Add here files that should not be added to the distribution | ||
# (via git archive) | ||
.gitignore export-ignore | ||
/utility/w90pov/**/*.xsf.gz export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,7 @@ postw90.x | |
make.inc | ||
w90chk2chk.x | ||
libwannier.a | ||
libwannier.so | ||
libwannier.dylib | ||
*~ | ||
*.x.dSYM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
- repo: git://github.com/pseewald/fprettify | ||
sha: v0.3.3 | ||
hooks: | ||
- id: fprettify | ||
args: ['--indent', '2'] | ||
exclude: (?x)^( | ||
pwscf/.* | ||
)$ | ||
verbose: true | ||
entry: ./test-suite/tools/fprettify-wrapper.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.6" | ||
addons: | ||
apt: | ||
packages: | ||
- gfortran | ||
- libblas-dev | ||
- liblapack-dev | ||
- openmpi-bin | ||
- libopenmpi-dev | ||
env: | ||
## Uncomment the following line if you want to run also the interface tests | ||
# - W90TESTSWITHINTERFACE=true | ||
- W90TESTSWITHINTERFACE=false | ||
- RUNTESTS=false RUNPRECOMMIT=true | ||
## Use these two lines instead of the other two if you want increased output | ||
# - RUNTESTS=true W90BINARYPARALLEL=false W90VERBOSETESTS=true | ||
# - RUNTESTS=true W90BINARYPARALLEL=true W90VERBOSETESTS=true | ||
- RUNTESTS=true RUNPRECOMMIT=false W90BINARYPARALLEL=false | ||
- RUNTESTS=true RUNPRECOMMIT=false W90BINARYPARALLEL=true | ||
install: | ||
# Possibly install QE and other interface code | ||
- ./test-suite/external-codes/get-external-codes.sh | ||
# Install Wannier | ||
- cp config/make.inc.gfort.travisci make.inc | ||
- make -j default | ||
- if [ "$RUNPRECOMMIT" == "true" ] ; then ./test-suite/install_precommit.sh ; fi | ||
- if [ "$RUNTESTS" == "true" ] ; then ./test-suite/tools/configure_travis_compilation.sh ; fi | ||
- if [ "$RUNTESTS" == "true" ] ; then make -j default w90chk2chk libs ; fi | ||
script: | ||
- ./test-suite/run_tests_travis.sh | ||
- if [ "$RUNPRECOMMIT" == "true" ] ; then ./test-suite/tools/run_precommit.sh ; fi | ||
- if [ "$RUNTESTS" == "true" ] ; then ./test-suite/tools/run_tests_travis.sh ; fi | ||
git: | ||
depth: 3 | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.