Skip to content

Commit

Permalink
Updated version number (#31)
Browse files Browse the repository at this point in the history
* Updated version number

* Updated wording of changelog entry

* Updated branch names from master to main
  • Loading branch information
deepsidhu85 authored Feb 10, 2023
1 parent 2947f1a commit cc6c7be
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: Integration Tests
on:
pull_request: # Run on all pull requests
push:
branches: # Run on any push to development or master
branches: # Run on any push to development or main
- development
- master
schedule: # Run weekly on development and master
- main
schedule: # Run weekly on development and main
- cron: 0 2 * * 1
branches: development
- cron: 0 2 * * 1
branches: master
branches: main


jobs:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: False #Setting so that if one of the test suites fail, the other will continue
matrix:
branch: ['master','development'] # IRIDA Branches to test against
branch: ['main','development'] # IRIDA Branches to test against

steps:
- uses: actions/checkout@v2 #Checkout the project from git
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to irida-galaxy-importer will be documeted in this file.

## 2.1.0
* Added in support for importing IRIDA files that are not available locally (i.e. in the cloud)

## 2.0.1
* Switched from travisCI tests to Github Actions
* Switched integration tests to launch irida via gradle
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SHELL=/bin/bash
IRIDA_VERSION?=master
IRIDA_VERSION?=main

requirements: clean env
source .virtualenv/bin/activate
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The Galaxy [tools/][galaxy-tools] directory contains tools that come with the Ga
```bash
cd galaxy/tools/

git clone -b master https://github.com/phac-nml/irida-galaxy-importer.git
git clone -b main https://github.com/phac-nml/irida-galaxy-importer.git
cd irida-galaxy-importer

# Optional. Checkout specific release from https://github.com/phac-nml/irida-galaxy-importer/releases
Expand Down Expand Up @@ -277,9 +277,9 @@ make unittests
Integration tests can be run with

```bash
make integrationtests branch=master
make integrationtests branch=main
```
This tests against the `master` branch of IRIDA
This tests against the `main` branch of IRIDA

[galaxy]: https://galaxyproject.org/
[irida]: https://www.irida.ca/
Expand Down
2 changes: 1 addition & 1 deletion irida_import/irida_import.xml.sample
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tool add_galaxy_url="False" force_history_refresh="True" id="TOOL_ID" name="IRIDA" tool_type="data_source" version="2.0.0">
<tool add_galaxy_url="False" force_history_refresh="True" id="TOOL_ID" name="IRIDA" tool_type="data_source" version="2.1.0">
<description>server</description>
<command detect_errors="exit_code"><![CDATA[
PYTHONPATH="$__tool_directory__"
Expand Down
2 changes: 1 addition & 1 deletion irida_import/tests/integration/irida_data_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, base_url, user, password, branch, db_host, db_port, repo_dir)
:param base_url: url of the IRIDA instance's API
:param user: default admin username
:param password: default admin password
:param branch: the github branch to run the integration tests on (e.g. 'master' or 'development')
:param branch: the github branch to run the integration tests on (e.g. 'main' or 'development')
:param db_host: mysql database host
:param db_port: mysql database port
:param repo_dir: where to download and install irida
Expand Down
2 changes: 1 addition & 1 deletion irida_import/tests/integration/tests_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def create_test_suite():
return suite


def start(irida_branch="master", db_host="localhost", db_port="3306"):
def start(irida_branch="main", db_host="localhost", db_port="3306"):
"""
Start running the integration tests
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def readme():


setup(name='irida_import',
version='2.0.0',
version='2.1.0',
description='A tool for importing data from IRIDA into Galaxy',
url='https://github.com/phac-nml/irida-galaxy-importer',
author='NML Bioinformatics',
Expand Down

0 comments on commit cc6c7be

Please sign in to comment.