An open API service indexing awesome lists of open source software.

https://github.com/lycantropos/run-fortran

Fortran files sorting based on modules definitions and usages.
https://github.com/lycantropos/run-fortran

fortran

Last synced: 2 months ago
JSON representation

Fortran files sorting based on modules definitions and usages.

Awesome Lists containing this project

README

        

run-fortran
===========

[![](https://dev.azure.com/lycantropos/run-fortran/_apis/build/status/lycantropos.run-fortran?branchName=master)](https://dev.azure.com/lycantropos/run-fortran/_build/latest?definitionId=38&branchName=master "Azure Pipelines")
[![](https://codecov.io/gh/lycantropos/run-fortran/branch/master/graph/badge.svg)](https://codecov.io/gh/lycantropos/run-fortran "Codecov")
[![](https://img.shields.io/github/license/lycantropos/run-fortran.svg)](https://github.com/lycantropos/run-fortran/blob/master/LICENSE "License")
[![](https://badge.fury.io/py/run-fortran.svg)](https://badge.fury.io/py/run-fortran "PyPI")

In what follows `python` is an alias for `python3.5` or `pypy3.5`
or any later version (`python3.6`, `pypy3.6` and so on).

Installation
------------

Install the latest `pip` & `setuptools` packages versions
```bash
python -m pip install --upgrade pip setuptools
```

### User

Download and install the latest stable version from `PyPI` repository
```bash
python -m pip install --upgrade run_fortran
```

### Developer

Download the latest version from `GitHub` repository
```bash
git clone https://github.com/lycantropos/run-fortran.git
cd run_fortran
```

Install
```bash
python setup.py install
```

Usage
-----

List available commands & options
```bash
run-fortran --help
```

Development
-----------

### Bumping version

#### Preparation

Install
[bump2version](https://github.com/c4urself/bump2version#installation).

#### Pre-release

Choose which version number category to bump following [semver
specification](http://semver.org/).

Test bumping version
```bash
bump2version --dry-run --verbose $CATEGORY
```

where `$CATEGORY` is the target version number category name, possible
values are `patch`/`minor`/`major`.

Bump version
```bash
bump2version --verbose $CATEGORY
```

This will set version to `major.minor.patch-alpha`.

#### Release

Test bumping version
```bash
bump2version --dry-run --verbose release
```

Bump version
```bash
bump2version --verbose release
```

This will set version to `major.minor.patch`.

### Running tests

Plain
```bash
pytest
```

Inside `Docker` container:
- with `CPython`
```bash
docker-compose --file docker-compose.cpython.yml up
```
- with `PyPy`
```bash
docker-compose --file docker-compose.pypy.yml up
```

`Bash` script:
- with `CPython`
```bash
./run-tests.sh
```
or
```bash
./run-tests.sh cpython
```

- with `PyPy`
```bash
./run-tests.sh pypy
```

`PowerShell` script:
- with `CPython`
```powershell
.\run-tests.ps1
```
or
```powershell
.\run-tests.ps1 cpython
```
- with `PyPy`
```powershell
.\run-tests.ps1 pypy
```