-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Circle CI support Fixed test-units to work with CI Fixed database initialization issue [1] [1]: git push --set-upstream github release-commit
- Loading branch information
Showing
6 changed files
with
56 additions
and
4 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,44 @@ | ||
# Python CircleCI 2.1 configuration file | ||
# | ||
|
||
version: 2.1 | ||
|
||
executors: | ||
python_executor: | ||
docker: | ||
- image: python:3.6.9 | ||
|
||
|
||
jobs: | ||
execute-test-units: | ||
executor: python_executor | ||
working_directory: ~/repo | ||
|
||
steps: | ||
- checkout | ||
- run: | ||
name: install dependencies | ||
command: | | ||
pip install -r requirements.txt | ||
# run tests! | ||
- run: | ||
name: run tests | ||
command: | | ||
cd ~/repo | ||
python setup.py test &> ./complete-test-report.txt | ||
- store_artifacts: | ||
path: complete-test-report.txt | ||
destination: complete-test-report.txt | ||
|
||
|
||
workflows: | ||
version: 2.1 | ||
workflows-run-test-units: | ||
jobs: | ||
- execute-test-units: | ||
filters: | ||
branches: | ||
ignore: | ||
- master |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ def requirements_file_to_list(fn='requirements.txt'): | |
|
||
setup( | ||
name='archsdn_central', | ||
version='1.4.0', | ||
version='1.4.1', | ||
packages=find_packages('src'), | ||
package_dir={'': 'src'}, | ||
package_data={'': ['*.sql']}, | ||
|
@@ -38,7 +38,7 @@ def requirements_file_to_list(fn='requirements.txt'): | |
maintainer='Carlos Miguel Ferreira', | ||
maintainer_email='[email protected]', | ||
description='Minimal centralized manager for OpenFlow enabled networks', | ||
long_description=open('README.rst').read(), | ||
long_description=open('README.md').read(), | ||
keywords='SDN OpenFlow Management', | ||
license='GPLv3', | ||
classifiers=[ | ||
|
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