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.
- Host: GitHub
- URL: https://github.com/lycantropos/run-fortran
- Owner: lycantropos
- License: mit
- Created: 2017-04-28T08:19:19.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-07-12T10:12:09.000Z (almost 4 years ago)
- Last Synced: 2025-02-18T09:40:20.867Z (3 months ago)
- Topics: fortran
- Language: Fortran
- Homepage:
- Size: 77.1 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
run-fortran
===========[](https://dev.azure.com/lycantropos/run-fortran/_build/latest?definitionId=38&branchName=master "Azure Pipelines")
[](https://codecov.io/gh/lycantropos/run-fortran "Codecov")
[](https://github.com/lycantropos/run-fortran/blob/master/LICENSE "License")
[](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
```