-
Notifications
You must be signed in to change notification settings - Fork 14
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 #282 from ODM2/Beta_1.2.4
Beta 1.2.4
- Loading branch information
Showing
52 changed files
with
272,707 additions
and
198 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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
*.so | ||
*.log | ||
__pycache__ | ||
.cache | ||
htmlcov | ||
|
||
# Packages | ||
|
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,67 @@ | ||
language: python | ||
sudo: required | ||
# if the https://travis-ci.org/ODM2/ODMToolsPython/requests ever says: missing config | ||
# validate at: http://lint.travis-ci.org/ | ||
python: | ||
# - "2.6" | ||
- "2.7" | ||
# - "3.2" | ||
# - "3.3" | ||
# - "3.4" | ||
# - "3.5" | ||
# - "3.5-dev" # 3.5 development branch | ||
# - "nightly" # currently points to 3.6-dev | ||
# command to install dependencies | ||
cache: | ||
directories: | ||
- $HOME/.cache/pip/wheels | ||
- $HOME/virtualenv/python2.7.9 | ||
services: | ||
- mysql | ||
- postgresql | ||
addons: | ||
apt: | ||
packages: | ||
- cmake | ||
- unixodbc | ||
- unixodbc-dev | ||
- odbcinst1debian2 | ||
- odbcinst | ||
- freetds-dev | ||
- freetds-bin | ||
- tdsodbc | ||
- libc6 | ||
- e2fsprogs | ||
- mysql-client | ||
- libproj-dev | ||
- python-wxgtk2.8 | ||
- python-wxtools | ||
- wx2.8-doc | ||
- wx2.8-examples | ||
- wx2.8-headers | ||
- wx2.8-i18n | ||
|
||
# mariadb: '10.1' | ||
before_script: | ||
- ./scripts/tests/mysql_setup.sh | ||
- ./scripts/tests/postgres_setup.sh | ||
- ./scripts/tests/freetds.sh | ||
|
||
before_install: | ||
# python -m pip makes the install go into the virtualenv | ||
- python -m pip install pandas | ||
- export PYMSSQL_BUILD_WITH_BUNDLED_FREETDS=1;python -m pip install pymssql | ||
# - python -m pip install mysql-python | ||
install: # now just our code | ||
- pip install geoalchemy2 | ||
- pip install -r requirements_tests.txt --allow-external pyodbc --allow-unverified pyodbc | ||
- pip list | ||
|
||
# don't forget to open up the azure mssql server to these addreses | ||
# https://docs.travis-ci.com/user/ip-addresses/ | ||
|
||
# command to run tests | ||
script: | ||
|
||
- py.test | ||
|
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,56 +1,8 @@ | ||
__author__ = 'Jacob' | ||
from icons.icons import * | ||
from icons.icons4addpoint import * | ||
|
||
from logger import LoggerTool | ||
|
||
__all__=["add", | ||
"binning", | ||
"bitmap_editor", | ||
"blank", | ||
"box_whisker", | ||
"box_whisker_type", | ||
"brush", | ||
"calendar", | ||
"chart_xy", | ||
"color_setting", | ||
"curve_points", | ||
"date_setting", | ||
"delete", | ||
"derive_new_series", | ||
"edit", | ||
"edit_view", | ||
"file_new", | ||
"filter_list", | ||
"flag", | ||
"full_date_range", | ||
"histogram", | ||
"his_type", | ||
"interpolate", | ||
"legend", | ||
"line_chart", | ||
"lin_drift", | ||
"open_file", | ||
"plot_type", | ||
"probability", | ||
"record", | ||
"restore", | ||
"save", | ||
"save_data", | ||
"script", | ||
"stop_edit", | ||
"summary", | ||
"table", | ||
"tsa_icon", | ||
"tsa_type", | ||
"gtk_execute", | ||
"Undo", | ||
"window_command_line", | ||
"window_enter", | ||
"LoggerTool", | ||
__all__=["LoggerTool", | ||
"logger", | ||
"newscript", | ||
"openscript", | ||
"savescript", | ||
"deletered", | ||
|
||
] |
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,53 @@ | ||
__author__ = 'Jacob' | ||
from icons import * | ||
from icons4addpoint import * | ||
__all__=["add", | ||
"binning", | ||
"bitmap_editor", | ||
"blank", | ||
"box_whisker", | ||
"box_whisker_type", | ||
"brush", | ||
"calendar", | ||
"chart_xy", | ||
"color_setting", | ||
"curve_points", | ||
"date_setting", | ||
"delete", | ||
"derive_new_series", | ||
"edit", | ||
"edit_view", | ||
"file_new", | ||
"filter_list", | ||
"flag", | ||
"full_date_range", | ||
"histogram", | ||
"his_type", | ||
"interpolate", | ||
"legend", | ||
"line_chart", | ||
"lin_drift", | ||
"open_file", | ||
"plot_type", | ||
"probability", | ||
"record", | ||
"restore", | ||
"save", | ||
"save_data", | ||
"script", | ||
"stop_edit", | ||
"summary", | ||
"table", | ||
"tsa_icon", | ||
"tsa_type", | ||
"gtk_execute", | ||
"Undo", | ||
"window_command_line", | ||
"window_enter", | ||
|
||
"newscript", | ||
"openscript", | ||
"savescript", | ||
"deletered", | ||
|
||
] |
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
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
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
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
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
Oops, something went wrong.