Skip to content

Commit

Permalink
Merge pull request #243 from tomhea/feature/update-top-level-files
Browse files Browse the repository at this point in the history
Feature/update top level files
  • Loading branch information
tomhea authored Oct 2, 2023
2 parents c8bbfb9 + e4a2028 commit 78c85f4
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 51 deletions.
7 changes: 2 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

# Show statistics for FlipJump files (as Text files, until FlipJump is Supported).
*.fj linguist-language=Text
# Show statistics for FlipJump files (as Text files, until FlipJump is Supported in linguist/lib/linguist/languages.yml).
*.fj linguist-language=Text linguist-detectable
38 changes: 0 additions & 38 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,41 +133,3 @@ dmypy.json

# Pyre type checker
.pyre/





# C++

# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries (also "C extensions")
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.app
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,18 @@ classifiers = [
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Other",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
]


Expand Down
8 changes: 0 additions & 8 deletions requirements.txt

This file was deleted.

3 changes: 3 additions & 0 deletions test_parallel
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/bin/bash
# This script executes the flipjump tests in parallel; first compiles the program, and then runs them.
# - Each phase is parallelized with the optimal number of threads.
# - Each phase is called with the given command-line arguments/flags.

pytest --compile -n auto "$@"
pytest --run -n auto "$@"
4 changes: 4 additions & 0 deletions test_parallel.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
:: This script executes the flipjump tests in parallel; first compiles the program, and then runs them.
:: - Each phase is parallelized with the optimal number of threads.
:: - Each phase is called with the given command-line arguments/flags.

pytest --compile -n auto %*
pytest --run -n auto %*

0 comments on commit 78c85f4

Please sign in to comment.