-
Notifications
You must be signed in to change notification settings - Fork 4
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 #5 from bonicim/update-tests
Add integration tests; rename workflows
- Loading branch information
Showing
10 changed files
with
227 additions
and
111 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,22 @@ | ||
name: Add bugs to bugs project | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add issue to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
# You can target a repository in a different organization | ||
# to the issue | ||
project-url: https://github.com/orgs/eclipse-volttron/projects/3 | ||
# project-url: https://github.com/orgs/<orgName>/projects/<projectNumber> | ||
# github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} | ||
github-token: ${{ secrets.AUTO_PROJECT_PAT }} | ||
# labeled: bug, needs-triage | ||
# label-operator: OR |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,47 @@ | ||
# -*- coding: utf-8 -*- {{{ | ||
# vim: set fenc=utf-8 ft=python sw=4 ts=4 sts=4 et: | ||
# | ||
# Copyright 2020, Battelle Memorial Institute. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# This material was prepared as an account of work sponsored by an agency of | ||
# the United States Government. Neither the United States Government nor the | ||
# United States Department of Energy, nor Battelle, nor any of their | ||
# employees, nor any jurisdiction or organization that has cooperated in the | ||
# development of these materials, makes any warranty, express or | ||
# implied, or assumes any legal liability or responsibility for the accuracy, | ||
# completeness, or usefulness or any information, apparatus, product, | ||
# software, or process disclosed, or represents that its use would not infringe | ||
# privately owned rights. Reference herein to any specific commercial product, | ||
# process, or service by trade name, trademark, manufacturer, or otherwise | ||
# does not necessarily constitute or imply its endorsement, recommendation, or | ||
# favoring by the United States Government or any agency thereof, or | ||
# Battelle Memorial Institute. The views and opinions of authors expressed | ||
# herein do not necessarily state or reflect those of the | ||
# United States Government or any agency thereof. | ||
# | ||
# PACIFIC NORTHWEST NATIONAL LABORATORY operated by | ||
# BATTELLE for the UNITED STATES DEPARTMENT OF ENERGY | ||
# under Contract DE-AC05-76RL01830 | ||
# }}} | ||
"""Configuration for the pytest test suite.""" | ||
|
||
import sys | ||
from pathlib import Path | ||
|
||
TESTS_DIR = Path(__file__).parent | ||
TMP_DIR = TESTS_DIR / "tmp" | ||
FIXTURES_DIR = TESTS_DIR / "fixtures" | ||
p = Path(__file__) | ||
if p.parent.parent.parent.resolve().as_posix() not in sys.path: | ||
sys.path.insert(0, p.parent.parent.resolve().as_posix()) | ||
|
||
from volttrontesting.fixtures.volttron_platform_fixtures import * |
Oops, something went wrong.